aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2017-09-04 20:49:00 +0200
committerPierre-Marie Pédrot2017-09-04 21:10:45 +0200
commitdd5ad74b19530568159606828c8542ac298be29d (patch)
tree696656cbf4e2649d4ab7887e12f998e7759d48bb /tests
parent567435828772e53327bacf7464291a5759c23831 (diff)
Implementing the non-strict mode.
Diffstat (limited to 'tests')
-rw-r--r--tests/compat.v4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/compat.v b/tests/compat.v
index f4e849c5de..489fa638e4 100644
--- a/tests/compat.v
+++ b/tests/compat.v
@@ -18,8 +18,7 @@ Qed.
Goal true = false -> false = true.
Proof.
-(** FIXME when the non-strict mode is implemented. *)
-Fail intros H; ltac1:(rewrite H); reflexivity.
+intros H; ltac1:(rewrite H); reflexivity.
Abort.
(** Variables do not cross the compatibility layer boundary. *)
@@ -57,4 +56,3 @@ Fail mytac ltac2:(fail).
let t := idtac; ltac2:(fail) in mytac t.
constructor.
Qed.
-