Files
kotlin-fork/compiler/testData/codegen/box/callableReference/property/inReceiverOfAnother.kt
T
2020-10-06 17:06:34 +02:00

8 lines
102 B
Kotlin
Vendored

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