Files
kotlin-fork/idea/testData/checker/PrimaryConstructors.jet
T

14 lines
135 B
Plaintext

class X {
val <error>x</error> : Int
}
open class Y() {
val x : Int = 2
}
class Y1 {
val x : Int get() = 1
}
class Z : Y() {
}