Files
kotlin/compiler/testData/codegen/box/enum/defaultCtor/secondaryConstructorWithDefaultArguments.kt
2018-07-23 15:08:18 +03:00

7 lines
141 B
Kotlin
Vendored

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