5 lines
93 B
Kotlin
Vendored
5 lines
93 B
Kotlin
Vendored
enum class E(val b: Boolean) {
|
|
TRUE(1 == 1)
|
|
}
|
|
|
|
fun box() = if (E.TRUE.b) "OK" else "fail" |