// FILE: test.kt class Foo { inner class Bar { } } fun box() { val x = Foo() x.Bar() } // EXPECTATIONS JVM_IR // test.kt:8 box: // test.kt:2 : // test.kt:8 box: // test.kt:9 box: x:Foo=Foo // test.kt:3 : // test.kt:9 box: x:Foo=Foo // test.kt:10 box: x:Foo=Foo // EXPECTATIONS JS_IR // test.kt:8 box: // test.kt:2 : // test.kt:9 box: x=Foo // test.kt:3 : // test.kt:3 : // test.kt:10 box: x=Foo