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

9 lines
142 B
Plaintext
Vendored

fun test1() {
val hello: Runnable = local fun <anonymous>() {
println(message = "Hello, world!")
}
/*-> Runnable */
hello.run()
}