aboutsummaryrefslogtreecommitdiff
path: root/testsuite/compilable
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/compilable')
-rw-r--r--testsuite/compilable/double_literals.elna9
-rw-r--r--testsuite/compilable/float_literals.elna9
-rw-r--r--testsuite/compilable/single_literals.elna9
3 files changed, 18 insertions, 9 deletions
diff --git a/testsuite/compilable/double_literals.elna b/testsuite/compilable/double_literals.elna
new file mode 100644
index 0000000..9e8a73d
--- /dev/null
+++ b/testsuite/compilable/double_literals.elna
@@ -0,0 +1,9 @@
+proc f()
+var
+ x: const Double := 3.14
+ y: const Double := 1e10
+ z: const Double := 4.567e8
+ t: const Double := 2.5E-3
+return
+
+end.
diff --git a/testsuite/compilable/float_literals.elna b/testsuite/compilable/float_literals.elna
deleted file mode 100644
index 77af6b1..0000000
--- a/testsuite/compilable/float_literals.elna
+++ /dev/null
@@ -1,9 +0,0 @@
-proc f()
-var
- x: const Float := 3.14
- y: const Float := 1e10
- z: const Float := 4.567e8
- t: const Float := 2.5E-3
-return
-
-end.
diff --git a/testsuite/compilable/single_literals.elna b/testsuite/compilable/single_literals.elna
new file mode 100644
index 0000000..ac03623
--- /dev/null
+++ b/testsuite/compilable/single_literals.elna
@@ -0,0 +1,9 @@
+proc f()
+var
+ x: const Single := 3.14f
+ y: const Single := 1e10f
+ z: const Single := 4.567e8f
+ t: const Single := 2.5E-3f
+return
+
+end.