Files
kotlin/compiler/testData/codegen/box/callableReference/function/local/extension.kt
2019-11-19 11:00:09 +03:00

8 lines
109 B
Kotlin
Vendored

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