Files
kotlin/compiler/testData/codegen/box/enum/simple.kt
2018-07-23 15:08:18 +03:00

13 lines
170 B
Kotlin
Vendored

enum class Season {
WINTER,
SPRING,
SUMMER,
AUTUMN
}
fun foo(): Season = Season.SPRING
fun box() =
if (foo() == Season.SPRING) "OK"
else "fail"