Files
kotlin-fork/compiler/testData/ir/irText/lambdas/samAdapter.kt
T
2020-05-25 21:24:39 +03:00

7 lines
119 B
Kotlin
Vendored

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