Files
kotlin-fork/compiler/testData/ir/irText/lambdas/samAdapter.kt
T

8 lines
142 B
Kotlin
Vendored

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