diff options
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/HoTT_coq_052.v (renamed from test-suite/bugs/opened/HoTT_coq_052.v) | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test-suite/bugs/opened/HoTT_coq_052.v b/test-suite/bugs/closed/HoTT_coq_052.v index 886dbad9ef..3fc663c6be 100644 --- a/test-suite/bugs/opened/HoTT_coq_052.v +++ b/test-suite/bugs/closed/HoTT_coq_052.v @@ -1,22 +1,23 @@ Goal Type = Type. - match goal with |- ?x = ?x => idtac end. + match goal with |- ?x = ?y => idtac end. Abort. Goal Prop. Fail match goal with |- Type => idtac end. Abort. + Goal Prop = Set. (* This should fail *) - Fail Fail match goal with |- ?x = ?x => idtac end. + Fail match goal with |- ?x = ?x => idtac x end. Abort. Goal Type = Prop. (* This should fail *) - Fail Fail match goal with |- ?x = ?x => idtac end. + Fail match goal with |- ?x = ?x => idtac end. Abort. Goal Type = Set. (* This should fail *) - Fail Fail match goal with |- ?x = ?x => idtac end. + Fail match goal with |- ?x = ?x => idtac end. Abort. |
