bcfafc601e
This change allows to revert adding `WITH_STDLIB` directive to tests which happened at `a9343aeb`. Co-authored-by: Alexander Udalov <Alexander.Udalov@jetbrains.com>
10 lines
145 B
Kotlin
Vendored
10 lines
145 B
Kotlin
Vendored
enum class A { V }
|
|
|
|
fun box(): String {
|
|
val a: A = A.V
|
|
val b: Boolean
|
|
when (a) {
|
|
A.V -> b = true
|
|
}
|
|
return if (b) "OK" else "FAIL"
|
|
} |