Files
kotlin-fork/compiler/testData/debug/localVariables/receiverMangling/capturedThisField.kt
T
2020-11-18 15:18:10 +01:00

21 lines
292 B
Kotlin
Vendored

// FILE: test.kt
class Foo {
inner class Bar {
}
}
fun box() {
val x = Foo()
x.Bar()
}
// LOCAL VARIABLES
// 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