26 lines
423 B
Kotlin
Vendored
26 lines
423 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
enum class Test0(val x: Int) {
|
|
ZERO;
|
|
constructor() : this(0)
|
|
}
|
|
|
|
enum class Test1(val x: Int) {
|
|
ZERO, ONE(1);
|
|
constructor() : this(0)
|
|
}
|
|
|
|
enum class Test2(val x: Int) {
|
|
ZERO {
|
|
override fun foo() {
|
|
println("ZERO")
|
|
}
|
|
},
|
|
ONE(1) {
|
|
override fun foo() {
|
|
println("ONE")
|
|
}
|
|
};
|
|
constructor() : this(0)
|
|
abstract fun foo()
|
|
} |