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