aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorGravatar Matthieu Sozeau <mattam@mattam.org>2014-04-09 14:02:15 +0200
committerGravatar Matthieu Sozeau <mattam@mattam.org>2014-05-06 09:59:00 +0200
commit266aea59645ede8fc12ff60ce077504e1f29624c (patch)
tree5fad7e9b4ceae5a0cf8e8d8991d77debe8599b6d /test-suite/bugs
parentbfbef3d5e9d1262e29ce5ed68acf6f33de603f39 (diff)
Keep track of universes on coercion applications even if they're not polymorphic (fixes bug #3043).
Diffstat (limited to 'test-suite/bugs')
-rw-r--r--test-suite/bugs/closed/3043.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/bugs/closed/3043.v b/test-suite/bugs/closed/3043.v
index 70c93ab1f..1be5056f9 100644
--- a/test-suite/bugs/closed/3043.v
+++ b/test-suite/bugs/closed/3043.v
@@ -1,4 +1,4 @@
-Goal (fun A (P : A -> Prop)
- (X : sigT P) => proj1_sig (sig_of_sigT X)) = (fun A (P : A -> Prop) (X : sigT P) => projT1 X).
+Goal (fun A (P : A -> Prop) (X : sigT P) => proj1_sig X) =
+ (fun A (P : A -> Prop) (X : sigT P) => projT1 X).
reflexivity.
Qed.