summaryrefslogtreecommitdiff
path: root/test/files/run/t4024.scala
blob: b822a7781ca04ee609f2c428ed7469a2070ec91b (plain) (blame)
1
2
3
4
5
6
7
8
9
object Test extends Application {

  val x = "abc"

  val m = x.getClass.getMethod("toString")

  assert(m.invoke(x, (Nil: List[AnyRef]): _*) == "abc")
}