aboutsummaryrefslogtreecommitdiff
path: root/tests/example2.v
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2017-08-03 20:23:08 +0200
committerPierre-Marie Pédrot2017-08-04 12:34:24 +0200
commitb84b03bb6230fca69cd9191ba0424402a5cd2330 (patch)
tree50fde8ada604b972e000c4f0e88dcf8b5f46527c /tests/example2.v
parent9db02b3bfe35c15c9df8615f0e47a2a6407e858b (diff)
Introducing notations for destruct and induction arguments.
Diffstat (limited to 'tests/example2.v')
-rw-r--r--tests/example2.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/example2.v b/tests/example2.v
index 79f230ab57..d89dcfd450 100644
--- a/tests/example2.v
+++ b/tests/example2.v
@@ -16,7 +16,7 @@ Qed.
Goal exists n, n = 0.
Proof.
-let myvar := Std.NamedHyp @x in split with (?myvar := 0).
+let myvar := Std.NamedHyp @x in split with ($myvar := 0).
split.
Qed.