summaryrefslogtreecommitdiff
path: root/test/files/run/t4024.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t4024.scala')
-rw-r--r--test/files/run/t4024.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/t4024.scala b/test/files/run/t4024.scala
index 4ab383ebc3..ef768beb99 100644
--- a/test/files/run/t4024.scala
+++ b/test/files/run/t4024.scala
@@ -1,9 +1,9 @@
object Test extends App {
- val x = "abc"
+ val x = "abc"
val m = x.getClass.getMethod("toString")
-
+
assert(m.invoke(x, (Nil: List[AnyRef]): _*) == "abc")
}