diff options
| author | Pierre Roux | 2020-03-18 21:33:34 +0100 |
|---|---|---|
| committer | Pierre Roux | 2020-03-26 08:21:30 +0100 |
| commit | ed399336b886a062e0e3070314c117d62d9a8af3 (patch) | |
| tree | 2804ac4b50791f2fd33af9968aa96d25816eec9a /test-suite/output/FloatSyntax.v | |
| parent | bc70bb31c579b9482d0189f20806632c62b26a61 (diff) | |
Print a warning when parsing non floating-point values.
For instance, parsing 0.1 will print a warning whereas parsing 0.5 won't.
Diffstat (limited to 'test-suite/output/FloatSyntax.v')
| -rw-r--r-- | test-suite/output/FloatSyntax.v | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test-suite/output/FloatSyntax.v b/test-suite/output/FloatSyntax.v index 85f611352c..eca712db10 100644 --- a/test-suite/output/FloatSyntax.v +++ b/test-suite/output/FloatSyntax.v @@ -21,6 +21,9 @@ Check (-2.5e-123). Check (2 + 2). Check (2.5 + 2.5). +Check 1e309. +Check -1e309. + Open Scope nat_scope. Check 2. |
