summaryrefslogtreecommitdiff
path: root/test/files/neg/ambiguous-float-dots.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/ambiguous-float-dots.scala')
-rw-r--r--test/files/neg/ambiguous-float-dots.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/files/neg/ambiguous-float-dots.scala b/test/files/neg/ambiguous-float-dots.scala
deleted file mode 100644
index 87e948db35..0000000000
--- a/test/files/neg/ambiguous-float-dots.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-class A {
- val x0 = 5.
-}
-
-class B {
- val x1 = 5.f
- val y0 = 055
-}
-
-class D {
- 1.+(2)
- 1. + 2
- 1 + 2
-}