Files
kotlin-fork/compiler/testData/codegen/box/callableReference/local/extension.kt
T
2013-12-24 20:41:20 +04:00

7 lines
80 B
Kotlin

class A
fun box(): String {
fun A.foo() = "OK"
return A().(A::foo)()
}