aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyril Cohen2018-09-24 17:21:13 +0200
committerMaxime Dénès2018-10-31 17:16:53 +0100
commit11ce272841e2aab89af9d2add75369f6391ba074 (patch)
treed70eb6d134cb5918d5e9797b8a3ce38954ab0c4e
parente2174ff5e54bb39e0db6c92fefd6c4b864c7f76b (diff)
test-suite entry for issue #8544
-rw-r--r--test-suite/bugs/closed/8544.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/8544.v b/test-suite/bugs/closed/8544.v
new file mode 100644
index 0000000000..674d112595
--- /dev/null
+++ b/test-suite/bugs/closed/8544.v
@@ -0,0 +1,6 @@
+Require Import ssreflect.
+Goal True \/ True -> False.
+Proof.
+(* the following should fail: 2 subgoals, but only one intro pattern *)
+Fail case => [a].
+Abort.