14 lines
196 B
Kotlin
Vendored
14 lines
196 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:NoConsistency
|
|
// COMPILATION_ERRORS |