Files
kotlin-fork/compiler/testData/ir/irText/expressions/outerClassInstanceReference.kt.txt
T
2020-11-26 00:14:25 +03:00

26 lines
278 B
Plaintext
Vendored

class Outer {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun outer() {
}
inner class Inner {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun inner() {
return <this>.outer()
}
}
}