Files
kotlin-fork/compiler/testData/ir/irText/classes/outerClassAccess.kt.txt
T
2024-02-16 10:19:38 +00:00

44 lines
518 B
Kotlin
Vendored

class Outer {
inner class Inner {
inner class Inner2 {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun test2() {
<this>.test()
<this>.foo()
}
fun Outer.test3() {
<this>.foo()
}
}
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun test() {
<this>.foo()
}
}
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun foo() {
}
}