Files
kotlin-fork/compiler/testData/cli/jvm/signatureClash.kt
T
Andrey Breslav 27f76630e6 ACCIDENTAL_OVERRIDE diagnostics supported
#KT-1 In Progress
2014-06-19 22:10:55 +04:00

14 lines
149 B
Kotlin

open class B {
val x = 1
}
class A : B() {
fun getX() = 1
fun getA(): Int = 1
val a: Int = 1
}
fun getB(): Int = 1
val b: Int = 1