diff options
| author | Matthieu Sozeau | 2014-06-15 14:19:00 +0200 |
|---|---|---|
| committer | Matthieu Sozeau | 2014-06-15 14:19:00 +0200 |
| commit | 5e5a4c9a54903c4a7a4bdcf5e8cec5768f9e3d33 (patch) | |
| tree | 68202772dd074adfa74d7caebc2a13b92bc99b80 | |
| parent | a0141c0ccc295af0d7938e8e515c9eef40449d73 (diff) | |
Fix test-suite file
| -rw-r--r-- | test-suite/bugs/closed/HoTT_coq_052.v | 3 |
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. |
