Files
kotlin/compiler/testData/codegen/box/enum/defaultCtor/secondaryConstructorWithDefaultArguments.kt
2019-11-19 11:00:09 +03:00

8 lines
171 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
enum class Test(val x: Int, val str: String) {
OK;
constructor(x: Int = 0) : this(x, "OK")
}
fun box(): String =
Test.OK.str