Files
kotlin-fork/jps/jps-plugin/testData/incremental/classHierarchyAffected/withIntermediateBodiesChanged/direct.kt.new.1
T
2022-01-12 15:09:45 +01:00

11 lines
168 B
Groff
Vendored

package foo
// order is important, see KT-49750
open class DirectBase {
open val x get() = 1
}
class DirectChild : DirectInter() {
override val x get() = 3
}