mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
7 lines
121 B
Kotlin
Vendored
7 lines
121 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
enum class Test(val str: String = "OK") {
|
|
OK
|
|
}
|
|
|
|
fun box(): String =
|
|
Test.OK.str |