054e5fb5e7
#KT-1183 In Progress
8 lines
102 B
Kotlin
8 lines
102 B
Kotlin
class A {
|
|
fun result() = this.(::foo)("OK")
|
|
}
|
|
|
|
fun A.foo(x: String) = x
|
|
|
|
fun box() = A().result()
|