fix(JS_IR): add outer classes resolving inside the function inliner.

This commit is contained in:
Artem Kobzar
2021-10-28 17:34:58 +00:00
committed by Space
parent 7f7aa9a921
commit 790e8843f9
18 changed files with 359 additions and 10 deletions
@@ -0,0 +1,12 @@
// FILE: 1.kt
class E<T>(val x: T) {
inner class Inner {
inline fun foo(): T = x
}
}
// FILE: 2.kt
inline class IC(val s: String)
fun box(): String = E(IC("OK")).Inner().foo().s