summaryrefslogtreecommitdiff
path: root/test-suite/vio/numeral.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/vio/numeral.v')
-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 00000000..f28355bb
--- /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.