Files
kotlin/compiler/testData/codegen/enum/simple.kt
2015-08-10 16:24:12 +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"