summaryrefslogtreecommitdiff
path: root/test/files/run/t2514.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t2514.scala')
-rw-r--r--test/files/run/t2514.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/t2514.scala b/test/files/run/t2514.scala
index cf5fa0ea02..0bf716e8bb 100644
--- a/test/files/run/t2514.scala
+++ b/test/files/run/t2514.scala
@@ -5,7 +5,7 @@ import scala.language.{ implicitConversions, postfixOps, reflectiveCalls }
object Test
{
implicit def x[A](a: A) = new { def xx = a }
-
+
def main(args: Array[String]): Unit = {
val r1 = 12 xx;
val r2 = 12.xx
@@ -13,7 +13,7 @@ object Test
val r4 = 12.xx + 12.xx
val r5 = 12.`xx` + 12.xx
val r6 = 12.3.`xx` + 12.xx
-
+
assert(r5 == 24)
}
}