fix(JS_IR): add outer classes resolving inside the function inliner.
This commit is contained in:
Vendored
+12
@@ -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
|
||||
Reference in New Issue
Block a user