dd824aacb6
This reverts commit 43b4df74bc.
13 lines
170 B
Kotlin
Vendored
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 |