diff options
| author | Hugo Herbelin | 2018-09-24 12:07:20 +0200 |
|---|---|---|
| committer | Hugo Herbelin | 2018-09-24 12:07:20 +0200 |
| commit | 54d9a8d8cbe82e9492780091d5d375422747d8b9 (patch) | |
| tree | 2f8306abd0d74cb5060748394da6c8d1b4864a5a /test-suite | |
| parent | a3f598cdfe681c7b0e77cbd8d9778f1920683c77 (diff) | |
| parent | 87de52b9b4fd793ee9ddd231633513b6c5070e19 (diff) | |
Merge PR #8464: Fix numeral notations
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/vio/numeral.v | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test-suite/vio/numeral.v b/test-suite/vio/numeral.v new file mode 100644 index 0000000000..f28355bb29 --- /dev/null +++ b/test-suite/vio/numeral.v @@ -0,0 +1,21 @@ +Lemma foo : True. +Proof. +Check 0 : nat. +Check 0 : nat. +exact I. +Qed. + +Lemma bar : True. +Proof. +pose (0 : nat). +exact I. +Qed. + +Require Import Coq.Strings.Ascii. +Open Scope char_scope. + +Lemma baz : True. +Proof. +pose "s". +exact I. +Qed. |
