8 lines
142 B
Kotlin
Vendored
8 lines
142 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// WITH_RUNTIME
|
|
// TARGET_BACKEND: JVM
|
|
|
|
fun test1() {
|
|
val hello = Runnable { println("Hello, world!") }
|
|
hello.run()
|
|
} |