aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2020-11-15 00:20:36 +0100
committerPierre-Marie Pédrot2020-11-15 00:20:36 +0100
commita118b906b3da7cb2e03a72f7a8079a7fc99c6f84 (patch)
tree9db2c41ab6ef97e9d80375b7dca1ff1ed1c5f111 /test-suite
parenta237a3d2c9de704873e1e20fa38282cf3562cddf (diff)
parent8ed2d808b2c9caf022b5e22bb43f2ca6876ebd1b (diff)
Merge PR #13339: In -noinit mode, add support for Proof using, using is not a keyword.
Ack-by: SkySkimmer Reviewed-by: herbelin Ack-by: ppedrot
Diffstat (limited to 'test-suite')
-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.