Files
kotlin-fork/idea/testData/checker/PrimaryConstructors.jet
T
2011-06-14 22:06:56 +04:00

14 lines
141 B
Plaintext

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