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

9 lines
119 B
Kotlin
Vendored

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