Files
kotlin-fork/compiler/testData/asJava/lightClasses/ideRegression/OverridingProtected.kt
T
2021-12-27 16:23:20 +03:00

15 lines
211 B
Kotlin
Vendored

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