8 lines
97 B
Kotlin
8 lines
97 B
Kotlin
package test
|
|
|
|
enum class Test(a : Int) {
|
|
A : Test(0)
|
|
B(x : Int) : Test(x)
|
|
C : Test(0) {}
|
|
}
|