aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/opened/3459.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/opened/3459.v')
-rw-r--r--test-suite/bugs/opened/3459.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/bugs/opened/3459.v b/test-suite/bugs/opened/3459.v
index 7c0133099..9e6107b30 100644
--- a/test-suite/bugs/opened/3459.v
+++ b/test-suite/bugs/opened/3459.v
@@ -25,7 +25,7 @@ Variable x : nat.
Goal True.
evar (e : Prop).
assert e.
-let r := constr:(eq_refl x) in clear x; exact r.
+Fail let r := constr:(eq_refl x) in clear x; exact r.
Abort.
End F.