aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/opened
diff options
context:
space:
mode:
authorHugo Herbelin2015-05-05 19:25:24 +0200
committerHugo Herbelin2015-05-09 13:44:01 +0200
commit5cbc018fe934750bdf1043da68f99911be4ee6f6 (patch)
tree034e3574779ff1279d7ba73268adcbede9379791 /test-suite/bugs/opened
parent3bcfff90470ef079b5e711ef72db28b670eeacd0 (diff)
Adding a flag "Set Regular Subst Tactic" off by default in v8.5 for
preserving compatibility of subst after #4214 being solved.
Diffstat (limited to 'test-suite/bugs/opened')
-rw-r--r--test-suite/bugs/opened/4214.v5
1 files changed, 5 insertions, 0 deletions
diff --git a/test-suite/bugs/opened/4214.v b/test-suite/bugs/opened/4214.v
new file mode 100644
index 0000000000..cd53c898e9
--- /dev/null
+++ b/test-suite/bugs/opened/4214.v
@@ -0,0 +1,5 @@
+(* Check that subst uses all equations around *)
+Goal forall A (a b c : A), b = a -> b = c -> a = c.
+intros.
+subst.
+reflexivity.