summaryrefslogtreecommitdiff
path: root/test/files/neg/ambiguous-float-dots.check
diff options
context:
space:
mode:
authorSimon Ochsenreither <simon@ochsenreither.de>2013-06-27 22:09:38 +0200
committerSimon Ochsenreither <simon@ochsenreither.de>2013-06-28 01:26:06 +0200
commit6b1654834fdb03ba73d7f9fad7b0735024e0d688 (patch)
tree3778104239eb0c12b1e13d83a6c3ef11a91d35fe /test/files/neg/ambiguous-float-dots.check
parent040830d87f7f6ceb2815b9c69f0679ba6b30753d (diff)
downloadscala-6b1654834fdb03ba73d7f9fad7b0735024e0d688.tar.gz
scala-6b1654834fdb03ba73d7f9fad7b0735024e0d688.tar.bz2
scala-6b1654834fdb03ba73d7f9fad7b0735024e0d688.zip
SI-7620 Remove floating-point-literals-without-digit-after-dot
Diffstat (limited to 'test/files/neg/ambiguous-float-dots.check')
-rw-r--r--test/files/neg/ambiguous-float-dots.check27
1 files changed, 0 insertions, 27 deletions
diff --git a/test/files/neg/ambiguous-float-dots.check b/test/files/neg/ambiguous-float-dots.check
deleted file mode 100644
index cdd2d6fa2a..0000000000
--- a/test/files/neg/ambiguous-float-dots.check
+++ /dev/null
@@ -1,27 +0,0 @@
-ambiguous-float-dots.scala:2: warning: This lexical syntax is deprecated. From scala 2.11, a dot will only be considered part of a number if it is immediately followed by a digit.
- val x0 = 5.
- ^
-ambiguous-float-dots.scala:6: warning: This lexical syntax is deprecated. From scala 2.11, a dot will only be considered part of a number if it is immediately followed by a digit.
- val x1 = 5.f
- ^
-ambiguous-float-dots.scala:7: warning: Treating numbers with a leading zero as octal is deprecated.
- val y0 = 055
- ^
-ambiguous-float-dots.scala:11: warning: This lexical syntax is deprecated. From scala 2.11, a dot will only be considered part of a number if it is immediately followed by a digit.
- 1.+(2)
- ^
-ambiguous-float-dots.scala:12: warning: This lexical syntax is deprecated. From scala 2.11, a dot will only be considered part of a number if it is immediately followed by a digit.
- 1. + 2
- ^
-ambiguous-float-dots.scala:11: warning: a pure expression does nothing in statement position; you may be omitting necessary parentheses
- 1.+(2)
- ^
-ambiguous-float-dots.scala:12: warning: a pure expression does nothing in statement position; you may be omitting necessary parentheses
- 1. + 2
- ^
-ambiguous-float-dots.scala:13: warning: a pure expression does nothing in statement position; you may be omitting necessary parentheses
- 1 + 2
- ^
-error: No warnings can be incurred under -Xfatal-warnings.
-8 warnings found
-one error found