7 lines
74 B
Kotlin
7 lines
74 B
Kotlin
package test
|
|
|
|
enum class Test(a : Int) {
|
|
A : Test(0)
|
|
B : Test(0) {}
|
|
}
|