Files
kotlin-fork/compiler/testData/codegen/box/callableReference/function/local/extension.kt
T
2018-08-09 14:22:50 +03:00

7 lines
79 B
Kotlin
Vendored

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