aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorMaxime Dénès2018-11-06 13:41:43 +0100
committerMaxime Dénès2018-11-06 13:41:43 +0100
commitf086374af55037f9a977258652b69ab7511401a4 (patch)
tree85da54623a607b483d501e91f26eccf60d502cf4 /test-suite
parented9c869d5fbc860e6525b2d8a5259a4d4b778180 (diff)
parent6eef3e1faf627b2b67d1428c154acd854ed77b5a (diff)
Merge PR #8556: [ssr] use tclDISPATCH for IPatDispatch (fix #8544)
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_8544.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_8544.v b/test-suite/bugs/closed/bug_8544.v
new file mode 100644
index 0000000000..674d112595
--- /dev/null
+++ b/test-suite/bugs/closed/bug_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.