mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 00:21:26 +00:00
9 lines
121 B
Kotlin
Vendored
9 lines
121 B
Kotlin
Vendored
fun box(): String {
|
|
class Local {
|
|
fun foo() = "OK"
|
|
}
|
|
|
|
val ref = Local::foo
|
|
return ref(Local())
|
|
}
|