Files
kotlin/compiler/testData/codegen/box/enum/defaultCtor/constructorWithVararg.kt

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"