Files
kotlin-fork/compiler/testData/codegen/box/callableReference/property/inReceiverOfAnother.kt
T
2021-10-02 06:14:35 +00:00

8 lines
102 B
Kotlin
Vendored

var x = "OK"
class C(init: () -> String) {
val value = init()
}
fun box() = C(::x)::value.get()