Files
kotlin-fork/idea/testData/checker/PrimaryConstructors.kt
T
2012-11-12 19:54:22 +04:00

14 lines
135 B
Kotlin
Vendored

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