aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/FPTest.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dark@d-d.me>2015-04-10 00:26:16 +0200
committerDmitry Petrashko <dark@d-d.me>2015-04-10 00:26:16 +0200
commit52d6ac3833c6daf888d48bcea06a98674243501d (patch)
tree8571b55f57df7cc9c8319749379ff5c5a2cae032 /tests/untried/pos/FPTest.scala
parent0c1797a870d5440917f17c36192f9b9050abe5f2 (diff)
parenta16ab214fe7fa634c299529147f43e4967abc972 (diff)
downloaddotty-52d6ac3833c6daf888d48bcea06a98674243501d.tar.gz
dotty-52d6ac3833c6daf888d48bcea06a98674243501d.tar.bz2
dotty-52d6ac3833c6daf888d48bcea06a98674243501d.zip
Merge pull request #469 from dotty-staging/stylecheck
Add stylechecking to test suite, fix style errors
Diffstat (limited to 'tests/untried/pos/FPTest.scala')
-rw-r--r--tests/untried/pos/FPTest.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/untried/pos/FPTest.scala b/tests/untried/pos/FPTest.scala
index b351b7bb9..6fab0fe67 100644
--- a/tests/untried/pos/FPTest.scala
+++ b/tests/untried/pos/FPTest.scala
@@ -4,7 +4,7 @@ import annotation.strictfp
@strictfp class FPTest {
def main(args: Array[String]): Unit = {
- val d: Double = 8e+307
+ val d: Double = 8e + 307
println(4.0 * d * 0.5);
println(2.0 * d);
}