Files
kotlin-fork/compiler/testData/ir/irText/lambdas/samAdapter.kt
T
2018-06-29 14:27:57 +03:00

6 lines
102 B
Kotlin
Vendored

// WITH_RUNTIME
fun test1() {
val hello = Runnable { println("Hello, world!") }
hello.run()
}