From 5cbc018fe934750bdf1043da68f99911be4ee6f6 Mon Sep 17 00:00:00 2001 From: Hugo Herbelin Date: Tue, 5 May 2015 19:25:24 +0200 Subject: Adding a flag "Set Regular Subst Tactic" off by default in v8.5 for preserving compatibility of subst after #4214 being solved. --- test-suite/bugs/opened/4214.v | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test-suite/bugs/opened/4214.v (limited to 'test-suite/bugs/opened') 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. -- cgit v1.2.3 From 39a67d502d341562b68c0f52163b2863bdd5ebd4 Mon Sep 17 00:00:00 2001 From: Hugo Herbelin Date: Sat, 9 May 2015 18:04:40 +0200 Subject: Adjusting test-suite after 5cbc018fe9347 (subst as in 8.4 by default). --- test-suite/bugs/opened/4214.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test-suite/bugs/opened') diff --git a/test-suite/bugs/opened/4214.v b/test-suite/bugs/opened/4214.v index cd53c898e9..3daf452132 100644 --- a/test-suite/bugs/opened/4214.v +++ b/test-suite/bugs/opened/4214.v @@ -2,4 +2,4 @@ Goal forall A (a b c : A), b = a -> b = c -> a = c. intros. subst. -reflexivity. +Fail reflexivity. -- cgit v1.2.3