blob: d7398641832904c48ad4bd457c342ce5ea589d6e [file] [log] [blame]
// FIR_IDENTICAL
class X {
<error>val x : Int</error>
}
open class Y() {
val x : Int = 2
}
class Y1 {
val x : Int get() = 1
}
class Z : Y() {
}