forked from coq/coq
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Always declare internal schemes univ poly
- Loading branch information
1 parent
ce3025d
commit 87068b4
Showing
3 changed files
with
16 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Set Universe Polymorphism. | ||
|
||
Axiom F : False. (* This is just used to cut the below proof short while still being able to write Qed *) | ||
|
||
Theorem test : forall (U1 U2 : Type) (eq1 eq2 : U1 = U2), eq1 = eq2. | ||
Proof. | ||
intros U1 U2 eq1 eq2. | ||
subst U2. | ||
destruct F. | ||
Qed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters