summaryrefslogtreecommitdiff
path: root/test/files/pos
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/pos
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/pos')
-rw-r--r--test/files/pos/t2081.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t2081.scala b/test/files/pos/t2081.scala
index d772c02dc2..f4f21600c6 100644
--- a/test/files/pos/t2081.scala
+++ b/test/files/pos/t2081.scala
@@ -7,5 +7,5 @@ object ScalaForRubyists {
val x = 10.days
// a couple parser corner cases I wanted not to break
- val y = 5.e0 + 5e7
+ val y = 5.0e0 + 5e7
}