diff options
author | Maxime Dénès <mail@maximedenes.fr> | 2018-04-16 09:09:44 +0200 |
---|---|---|
committer | Maxime Dénès <mail@maximedenes.fr> | 2018-04-16 09:09:44 +0200 |
commit | 8fdfbdbcb4156571a43db7445dea6cd6cec58a53 (patch) | |
tree | c14e2d109112f1fef9cf19b293ddd275ad79cbfe /test-suite/success | |
parent | ea08600edd8796bc8d2782a1750c628c2f64f3d6 (diff) | |
parent | 2243c25c79ab19876ad74452c9cecc7dcc88c67c (diff) |
Merge PR #7200: [ltac] Deprecate nameless fix/cofix.
Diffstat (limited to 'test-suite/success')
-rw-r--r-- | test-suite/success/ShowExtraction.v | 2 | ||||
-rw-r--r-- | test-suite/success/name_mangling.v | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/test-suite/success/ShowExtraction.v b/test-suite/success/ShowExtraction.v index e34c240c5..a4a35003d 100644 --- a/test-suite/success/ShowExtraction.v +++ b/test-suite/success/ShowExtraction.v @@ -12,7 +12,7 @@ Fail Show Extraction. Lemma decListA : forall (xs ys : list A), {xs=ys}+{xs<>ys}. Proof. Show Extraction. -fix 1. +fix decListA 1. destruct xs as [|x xs], ys as [|y ys]. Show Extraction. - now left. diff --git a/test-suite/success/name_mangling.v b/test-suite/success/name_mangling.v index 571dde880..e98241420 100644 --- a/test-suite/success/name_mangling.v +++ b/test-suite/success/name_mangling.v @@ -122,8 +122,7 @@ Lemma a : forall n, n = 0. Proof. fix a 1. Check a. -fix 1. -Fail Check a0. +Fail fix a 1. Abort. (* Test stability of "induction" *) |