aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorMaxime Dénès2017-09-19 11:13:41 +0200
committerMaxime Dénès2017-09-19 11:13:41 +0200
commit7e4535d62c4f8abc6537206e7abc34f1bb0be69d (patch)
tree2de921eef8635d02a90fe84f128e0c3293475afc /test-suite
parent1518ce12ab77edc399c1d177c71c013c708e9fd4 (diff)
parentec4894148b06f743522081714db12bc07bd3ef46 (diff)
Merge PR #1050: Avoid extra failure in the "constructor" tactic (bug #5666).
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/5666.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/5666.v b/test-suite/bugs/closed/5666.v
new file mode 100644
index 0000000000..d55a6e57b4
--- /dev/null
+++ b/test-suite/bugs/closed/5666.v
@@ -0,0 +1,4 @@
+Inductive foo := Foo : False -> foo.
+Goal foo.
+try (constructor ; fail 0).
+Fail try (constructor ; fail 1).