aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorHugo Herbelin2018-09-24 12:07:20 +0200
committerHugo Herbelin2018-09-24 12:07:20 +0200
commit54d9a8d8cbe82e9492780091d5d375422747d8b9 (patch)
tree2f8306abd0d74cb5060748394da6c8d1b4864a5a /test-suite
parenta3f598cdfe681c7b0e77cbd8d9778f1920683c77 (diff)
parent87de52b9b4fd793ee9ddd231633513b6c5070e19 (diff)
Merge PR #8464: Fix numeral notations
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/vio/numeral.v21
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.