aboutsummaryrefslogtreecommitdiff
path: root/test-suite/output/clear.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/output/clear.v')
-rw-r--r--test-suite/output/clear.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/output/clear.v b/test-suite/output/clear.v
new file mode 100644
index 0000000000..d584cf752e
--- /dev/null
+++ b/test-suite/output/clear.v
@@ -0,0 +1,8 @@
+Module Wish11692.
+
+(* Support for let-in in clear dependent *)
+
+Goal forall x : Prop, let z := 0 in let z' : (fun _ => True) x := I in let y := x in y -> True.
+Proof. intros x z z' y H. clear dependent x. Show. exact I. Qed.
+
+End Wish11692.