Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/noThis.kt
T

10 lines
209 B
Kotlin
Vendored

interface A { fun f() }
open class P(val z: B)
class B : A {
override fun f() {}
class C : A by <!NO_THIS!>this<!> {}
class D(val x : B = <!NO_THIS!>this<!>)
class E : P(<!NO_THIS!>this<!>)
}