Files
kotlin-fork/backend.native/tests/external/codegen/box/callableReference/function/extensionFromClass.kt
T
2017-03-13 15:31:46 +03:00

8 lines
104 B
Kotlin

class A {
fun result() = (A::foo)(this, "OK")
}
fun A.foo(x: String) = x
fun box() = A().result()