Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/localThisSuper.kt
T

25 lines
478 B
Kotlin
Vendored

// FIR_IDENTICAL
interface Trait {
fun bar() = 42
}
class Outer : Trait {
fun foo() {
val t = this@Outer
val s = super@Outer.bar()
class Local : Trait {
val t = this@Outer
val s = super@Outer.bar()
inner class Inner {
val t = this@Local
val s = super@Local.bar()
val tt = this@Outer
val ss = super@Outer.bar()
}
}
}
}