diff options
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/output/primitive_tokens.out | 29 | ||||
| -rw-r--r-- | test-suite/output/primitive_tokens.v | 15 |
2 files changed, 44 insertions, 0 deletions
diff --git a/test-suite/output/primitive_tokens.out b/test-suite/output/primitive_tokens.out new file mode 100644 index 0000000000..cbed08c0ca --- /dev/null +++ b/test-suite/output/primitive_tokens.out @@ -0,0 +1,29 @@ +"foo" + : string +1234 + : nat +String (Ascii.Ascii false true true false false true true false) + (String (Ascii.Ascii true true true true false true true false) + (String (Ascii.Ascii true true true true false true true false) + EmptyString)) + : string +S + (S + (S + (S + (S + (S + (S + (S + (S + (S + (S + (S + (S + (S + (S + (S + (S + (S + (S (S (S (S (S (S ...))))))))))))))))))))))) + : nat diff --git a/test-suite/output/primitive_tokens.v b/test-suite/output/primitive_tokens.v new file mode 100644 index 0000000000..fe31107744 --- /dev/null +++ b/test-suite/output/primitive_tokens.v @@ -0,0 +1,15 @@ +Require Import String. + +Open Scope string_scope. + +Unset Printing Notations. + +Check "foo". +Check 1234. +Check 1 + 2. + +Unset Printing Primitive Tokens. + +Check "foo". +Check 1234. +Check 1 + 2. |
