7 lines
80 B
Kotlin
7 lines
80 B
Kotlin
class A
|
|
|
|
fun box(): String {
|
|
fun A.foo() = "OK"
|
|
return A().(A::foo)()
|
|
}
|