9 lines
142 B
Plaintext
Vendored
9 lines
142 B
Plaintext
Vendored
fun test1() {
|
|
val hello: Runnable = local fun <anonymous>() {
|
|
println(message = "Hello, world!")
|
|
}
|
|
/*-> Runnable */
|
|
hello.run()
|
|
}
|
|
|