Files
kotlin-fork/compiler/testData/asJava/lightClasses/ideRegression/OverridingProtected.kt
T
Dmitry Gridin 97ce502cbe [light classes] drop old light classes and backend: iteration #2
drop javaFileStub and fix tests

^KT-48773
2022-06-28 11:44:39 +00:00

13 lines
170 B
Kotlin
Vendored

// p.C
package p
class C : A() {
override val ap: Int
get() = super.c
override fun af(): Int {
return super.foo()
}
}
// COMPILATION_ERRORS