JVM_IR: fix parentClassId for property accessors

This commit is contained in:
pyos
2021-05-27 22:52:48 +02:00
committed by max-kammerer
parent d4485bc475
commit 3be348f910
2 changed files with 10 additions and 4 deletions
@@ -10,10 +10,12 @@ fun f(): String = "O"
val g: String? get() = "K"
inline val h: String get() = ""
inline fun <T> i(block: () -> T): T = block()
// FILE: 2.kt
import foo.bar.*
fun box(): String = i { f() + g }
fun box(): String = i { f() + g + h }