diff options
Diffstat (limited to 'test-suite/output/QArithSyntax.v')
| -rw-r--r-- | test-suite/output/QArithSyntax.v | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/output/QArithSyntax.v b/test-suite/output/QArithSyntax.v new file mode 100644 index 0000000000..2f2ee0134a --- /dev/null +++ b/test-suite/output/QArithSyntax.v @@ -0,0 +1,9 @@ +Require Import QArith. +Open Scope Q_scope. +Check (eq_refl : 1.02 = 102 # 100). +Check (eq_refl : 1.02e1 = 102 # 10). +Check (eq_refl : 1.02e+03 = 1020). +Check (eq_refl : 1.02e+02 = 102 # 1). +Check (eq_refl : 10.2e-1 = 1.02). +Check (eq_refl : -0.0001 = -1 # 10000). +Check (eq_refl : -0.50 = - 50 # 100). |
