Files
kotlin-fork/compiler/testData/codegen/box/callableReference/function/local/extension.kt
T
2018-06-28 12:26:41 +02:00

8 lines
105 B
Kotlin
Vendored

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