Files
kotlin-fork/compiler/testData/codegen/box/callableReference/property/inReceiverOfAnother.kt
T
2021-09-27 17:07:39 +03:00

10 lines
176 B
Kotlin
Vendored

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