9 lines
135 B
Kotlin
Vendored
9 lines
135 B
Kotlin
Vendored
enum class Enum(val i: Int) {
|
|
|
|
TEST(45),
|
|
PROBE(45),
|
|
SONDE(45);
|
|
|
|
constructor(x: String) : <expr>this</expr>(x.length)
|
|
|
|
} |