aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/opened/HoTT_coq_052.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/opened/HoTT_coq_052.v')
-rw-r--r--test-suite/bugs/opened/HoTT_coq_052.v9
1 files changed, 6 insertions, 3 deletions
diff --git a/test-suite/bugs/opened/HoTT_coq_052.v b/test-suite/bugs/opened/HoTT_coq_052.v
index dac575b54..886dbad9e 100644
--- a/test-suite/bugs/opened/HoTT_coq_052.v
+++ b/test-suite/bugs/opened/HoTT_coq_052.v
@@ -7,13 +7,16 @@ Goal Prop.
Abort.
Goal Prop = Set.
- Fail match goal with |- ?x = ?x => idtac end.
+ (* This should fail *)
+ Fail Fail match goal with |- ?x = ?x => idtac end.
Abort.
Goal Type = Prop.
- Fail match goal with |- ?x = ?x => idtac end.
+ (* This should fail *)
+ Fail Fail match goal with |- ?x = ?x => idtac end.
Abort.
Goal Type = Set.
- Fail match goal with |- ?x = ?x => idtac end.
+ (* This should fail *)
+ Fail Fail match goal with |- ?x = ?x => idtac end.
Abort.