summaryrefslogtreecommitdiff
path: root/test-suite/success/unfold.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/success/unfold.v')
-rw-r--r--test-suite/success/unfold.v10
1 files changed, 5 insertions, 5 deletions
diff --git a/test-suite/success/unfold.v b/test-suite/success/unfold.v
index de75dfce..35910011 100644
--- a/test-suite/success/unfold.v
+++ b/test-suite/success/unfold.v
@@ -8,8 +8,8 @@
(* Test le Hint Unfold sur des var locales *)
Section toto.
-Local EQ:=eq.
-Goal (EQ nat O O).
-Hints Unfold EQ.
-Auto.
-Save.
+Let EQ := eq.
+Goal EQ nat 0 0.
+Hint Unfold EQ.
+auto.
+Qed.