summaryrefslogtreecommitdiff
path: root/test/files/run/literals.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/literals.check')
-rw-r--r--test/files/run/literals.check16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/files/run/literals.check b/test/files/run/literals.check
new file mode 100644
index 0000000000..43bd7101e7
--- /dev/null
+++ b/test/files/run/literals.check
@@ -0,0 +1,16 @@
+test 1e1f == 10.0f was successful
+test 2.f == 2.0f was successful
+test .3f == 0.3f was successful
+test 0f == 0.0f was successful
+test 3.14f == 3.14f was successful
+test 6.022e23f == 6.022e23f was successful
+test 09f == 9.0f was successful
+test 1e1 == 10.0 was successful
+test 2. == 2.0 was successful
+test 2.d == 2.0 was successful
+test .3 == 0.3 was successful
+test 0.0 == 0.0 was successful
+test 0d == 0.0 was successful
+test 3.14 == 3.14 was successful
+test 1e-9d == 1.0e-9 was successful
+test 1e137 == 1.0e137 was successful