summaryrefslogtreecommitdiff
path: root/test/files/run/delambdafyLambdaClassNames/Test.scala
blob: 49a397d1d2b83d9d0755a1df65c7d32926850523 (plain) (blame)
1
2
3
4
object Test extends App {
  val c = Class.forName("A$$nestedInAnon$1$lambda$$run$1")
  println(c.getName)
}