Files
kotlin/compiler/testData/codegen/box/enum/defaultCtor/constructorWithDefaultArguments.kt
2018-06-09 19:15:38 +03:00

7 lines
116 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
enum class Test(val str: String = "OK") {
OK
}
fun box(): String =
Test.OK.str