-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge PR coq#19491: Fix equality testing of univ instances in constrexpr
Reviewed-by: ppedrot Co-authored-by: ppedrot <[email protected]>
- Loading branch information
Showing
2 changed files
with
24 additions
and
10 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,12 @@ | ||
Set Universe Polymorphism. | ||
|
||
Axiom typ : Type. | ||
|
||
Inductive S1a@{a} (A:typ@{a}) : Prop := | ||
with S1b (A:typ@{a}) : Prop := | ||
. | ||
(* | ||
Parameters should be syntactically the same for each inductive type. | ||
Type "S1a" has parameters "(A : typ@{a})" | ||
but type "S1b" has parameters "(A : typ@{a})". | ||
*) |