aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/3654.v
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2014-12-16 13:42:08 +0100
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2014-12-16 16:24:30 +0100
commit3466dfa2315c8ea4cde08ad1786360d2aa8e43c2 (patch)
tree9340ba46a0a6e79d22b29b4d34eebe6de57abdc1 /test-suite/bugs/closed/3654.v
parent8029f7555f9c6f201cc70b5ecc538b11a861f0aa (diff)
Test for #3654.
Diffstat (limited to 'test-suite/bugs/closed/3654.v')
-rw-r--r--test-suite/bugs/closed/3654.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/3654.v b/test-suite/bugs/closed/3654.v
new file mode 100644
index 000000000..15277235b
--- /dev/null
+++ b/test-suite/bugs/closed/3654.v
@@ -0,0 +1,7 @@
+Tactic Notation "mysimpl" "in" ne_hyp_list(hyps) := simpl in hyps.
+
+Goal 0+0=0->0+0=0->0=0.
+intros H1 H2.
+mysimpl in H1 H2.
+match goal with H:0=0 |- _ => exact H end.
+Qed.