summaryrefslogtreecommitdiff
path: root/test/files/neg/ambiguous-float-dots2.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/ambiguous-float-dots2.check')
-rw-r--r--test/files/neg/ambiguous-float-dots2.check13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/neg/ambiguous-float-dots2.check b/test/files/neg/ambiguous-float-dots2.check
new file mode 100644
index 0000000000..613601a1b2
--- /dev/null
+++ b/test/files/neg/ambiguous-float-dots2.check
@@ -0,0 +1,13 @@
+ambiguous-float-dots2.scala:2: error: malformed floating point number: to be part of a number, a dot must be immediately followed by a digit
+ val x0 = 5.
+ ^
+ambiguous-float-dots2.scala:6: error: malformed floating point number: to be part of a number, a dot must be immediately followed by a digit
+ 1.+(2)
+ ^
+ambiguous-float-dots2.scala:7: error: malformed floating point number: to be part of a number, a dot must be immediately followed by a digit
+ 1. + 2
+ ^
+ambiguous-float-dots2.scala:3: error: ';' expected but 'val' found.
+ val x1 = 5.f
+ ^
+four errors found