summaryrefslogtreecommitdiff
path: root/test-suite/success/refine.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/success/refine.v')
-rw-r--r--test-suite/success/refine.v30
1 files changed, 30 insertions, 0 deletions
diff --git a/test-suite/success/refine.v b/test-suite/success/refine.v
new file mode 100644
index 00000000..ad4eed5a
--- /dev/null
+++ b/test-suite/success/refine.v
@@ -0,0 +1,30 @@
+
+(* Refine and let-in's *)
+
+Goal (EX x:nat | x=O).
+Refine let y = (plus O O) in ?.
+Exists y; Auto.
+Save test1.
+
+Goal (EX x:nat | x=O).
+Refine let y = (plus O O) in (ex_intro ? ? (plus y y) ?).
+Auto.
+Save test2.
+
+Goal nat.
+Refine let y = O in (plus O ?).
+Exact (S O).
+Save test3.
+
+(* Example submitted by Yves on coqdev *)
+
+Require PolyList.
+
+Goal (l:(list nat))l=l.
+Proof.
+Refine [l]<[l]l=l>
+ Cases l of
+ | nil => ?
+ | (cons O l0) => ?
+ | (cons (S _) l0) => ?
+ end.