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.
Prevent incorrect extraction of nontrivial sort polymorphism
- Loading branch information
1 parent
25a0f85
commit 5adc9b3
Showing
2 changed files
with
29 additions
and
3 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 @@ | ||
Require Extraction. | ||
|
||
Set Universe Polymorphism. | ||
Definition foo@{s| |} := tt. | ||
|
||
Definition bar := foo@{Prop|}. | ||
|
||
Fail Extraction bar. | ||
|
||
(* the actual problem only appears once we have inductives with sort poly output *) |