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

9 lines
145 B
Kotlin
Vendored

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