Files
kotlin-fork/compiler/testData/codegen/boxInline/callableReference/bound/inlineValueParameterInsteadOfReceiver.kt
T
2021-02-02 17:53:52 +03:00

16 lines
158 B
Kotlin
Vendored

// FILE: 1.kt
package test
class Z
class Q {
inline fun f(z: Z) = "OK"
}
// FILE: 2.kt
import test.*
fun box(): String {
return Z().run(Q()::f)
}