aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/HoTT_coq_052.v3
1 files changed, 1 insertions, 2 deletions
diff --git a/test-suite/bugs/closed/HoTT_coq_052.v b/test-suite/bugs/closed/HoTT_coq_052.v
index 3fc663c6be..62bb9fa1a6 100644
--- a/test-suite/bugs/closed/HoTT_coq_052.v
+++ b/test-suite/bugs/closed/HoTT_coq_052.v
@@ -1,12 +1,11 @@
Goal Type = Type.
- match goal with |- ?x = ?y => idtac end.
+ Fail match goal with |- ?x = ?x => idtac end.
Abort.
Goal Prop.
Fail match goal with |- Type => idtac end.
Abort.
-
Goal Prop = Set.
(* This should fail *)
Fail match goal with |- ?x = ?x => idtac x end.