Files
kotlin-fork/compiler/testData/psi/secondaryConstructors/enumParsing.kt
T
2015-03-11 17:45:22 +03:00

16 lines
152 B
Kotlin

enum class A {
constructor(x: Int) {}
abc1 : A(1,2,3)
abc2 : A(1,2,3) {}
init {}
abc3
constructor(x: Int): this() {}
{
}
}