aboutsummaryrefslogtreecommitdiff
path: root/tests/example2.v
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2017-09-14 00:15:09 +0200
committerPierre-Marie Pédrot2017-09-14 00:36:18 +0200
commitc53fb4be8c65a89dd03d4aedc2fc65d9807da915 (patch)
tree62c830e3c4262ba306dee2dda7ef1141fd45be41 /tests/example2.v
parent4ed40a9427f67ab6091f1af5457ffdec5e156d12 (diff)
Binding the pose/set family of tactics.
Diffstat (limited to 'tests/example2.v')
-rw-r--r--tests/example2.v14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/example2.v b/tests/example2.v
index a7eb02050b..b667e19bbd 100644
--- a/tests/example2.v
+++ b/tests/example2.v
@@ -208,3 +208,17 @@ Proof.
refine '(let x := 0 in _).
eexists; exists &x; reflexivity.
Qed.
+
+Goal True.
+Proof.
+pose (X := True).
+constructor.
+Qed.
+
+Goal True.
+Proof.
+let x := @foo in
+set ($x := True) in * |-.
+constructor.
+Qed.
+