JVM_IR: add a transformChildren call to PropertyReferenceLowering

#KT-42354 Fixed
This commit is contained in:
pyos
2020-10-05 14:20:34 +02:00
committed by Alexander Udalov
parent b1bd138afb
commit a6d5c02d9b
9 changed files with 43 additions and 3 deletions
@@ -0,0 +1,7 @@
var x = "OK"
class C(init: () -> String) {
val value = init()
}
fun box() = C(::x)::value.get()