diff options
| author | Théo Zimmermann | 2020-11-12 11:46:24 +0100 |
|---|---|---|
| committer | Théo Zimmermann | 2020-11-12 16:09:25 +0100 |
| commit | 403a9057b41ed3a8d069175a5834a88442e47f66 (patch) | |
| tree | a219a2c5a1b6568f537dae91dcd2e01c1fa1ba8e | |
| parent | 1117058b39603bb42591961f4b13faa6c58c6ee2 (diff) | |
Test case for Proof using in -noinit mode.
| -rw-r--r-- | test-suite/success/proof_using_noinit.v | 9 |
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. |
