e9c9d5731e
This is in preparation for enabling the tests for FIR which will be easier to do when the tests are on the new infrastructure.
21 lines
289 B
Kotlin
Vendored
21 lines
289 B
Kotlin
Vendored
|
|
|
|
// FILE: test.kt
|
|
class Foo {
|
|
inner class Bar {
|
|
}
|
|
}
|
|
|
|
fun box() {
|
|
val x = Foo()
|
|
x.Bar()
|
|
}
|
|
|
|
// EXPECTATIONS
|
|
// test.kt:10 box:
|
|
// test.kt:4 <init>:
|
|
// test.kt:10 box:
|
|
// test.kt:11 box: x:Foo=Foo
|
|
// test.kt:5 <init>:
|
|
// test.kt:11 box: x:Foo=Foo
|
|
// test.kt:12 box: x:Foo=Foo |