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

9 lines
123 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
class A
fun A.foo() = (A::bar)(this, "OK")
fun A.bar(x: String) = x
fun box() = A().foo()