summaryrefslogtreecommitdiff
path: root/test/files/neg/ambiguous-float-dots.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-11-29 18:10:55 +0000
committerPaul Phillips <paulp@improving.org>2011-11-29 18:10:55 +0000
commit8eba9acbc49eb02b9b5bd8523873a181255e4bb6 (patch)
treea0fa1d713bd0cfdba8b95f7d552dccd1be795fd4 /test/files/neg/ambiguous-float-dots.check
parent9c4f14411f1aac5d106aa4a2a404c7d231752478 (diff)
downloadscala-8eba9acbc49eb02b9b5bd8523873a181255e4bb6.tar.gz
scala-8eba9acbc49eb02b9b5bd8523873a181255e4bb6.tar.bz2
scala-8eba9acbc49eb02b9b5bd8523873a181255e4bb6.zip
Fixed -Xfuture 5.ds, deprecated 0-octal.
I messed up my trip to the future the first time around; now in the future 5.f is not an error but an attempt to call method "f" on 5 like nature intended. (Thank you simon for catching this.) And deprecated leading 0 for octal. Closes SI-5205.
Diffstat (limited to 'test/files/neg/ambiguous-float-dots.check')
-rw-r--r--test/files/neg/ambiguous-float-dots.check11
1 files changed, 7 insertions, 4 deletions
diff --git a/test/files/neg/ambiguous-float-dots.check b/test/files/neg/ambiguous-float-dots.check
index d1e71543f1..6c21056d7a 100644
--- a/test/files/neg/ambiguous-float-dots.check
+++ b/test/files/neg/ambiguous-float-dots.check
@@ -1,13 +1,16 @@
ambiguous-float-dots.scala:2: error: 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:3: error: 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.
+ambiguous-float-dots.scala:6: error: 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:6: error: 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.
+ambiguous-float-dots.scala:7: error: Treating numbers with a leading zero as octal is deprecated.
+ val y0 = 055
+ ^
+ambiguous-float-dots.scala:11: error: 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:7: error: 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.
+ambiguous-float-dots.scala:12: error: 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
^
-four errors found
+5 errors found