Files
kotlin-fork/compiler/testData/ir/irText/lambdas/samAdapter.kt
T
2016-10-18 09:09:00 +03:00

7 lines
114 B
Kotlin
Vendored

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