mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
7 lines
139 B
Kotlin
Vendored
7 lines
139 B
Kotlin
Vendored
enum class Test(vararg xs: Int) {
|
|
OK;
|
|
val values = xs
|
|
}
|
|
|
|
fun box(): String =
|
|
if (Test.OK.values.size == 0) "OK" else "Fail" |