aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThéo Zimmermann2020-11-12 11:46:24 +0100
committerThéo Zimmermann2020-11-12 16:09:25 +0100
commit403a9057b41ed3a8d069175a5834a88442e47f66 (patch)
treea219a2c5a1b6568f537dae91dcd2e01c1fa1ba8e
parent1117058b39603bb42591961f4b13faa6c58c6ee2 (diff)
Test case for Proof using in -noinit mode.
-rw-r--r--test-suite/success/proof_using_noinit.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/success/proof_using_noinit.v b/test-suite/success/proof_using_noinit.v
new file mode 100644
index 0000000000..f99b49619c
--- /dev/null
+++ b/test-suite/success/proof_using_noinit.v
@@ -0,0 +1,9 @@
+(* -*- coq-prog-args: ("-noinit"); -*- *)
+
+Section A.
+Variable A : Prop.
+Hypothesis a : A.
+Lemma b : A.
+Proof using a.
+Admitted.
+End A.