blob: a75ee7215ea3b00f6fa1dd0d6b43551c886df3f2 [file] [log] [blame]
enum class Season {
WINTER,
SPRING,
SUMMER,
AUTUMN
}
fun foo(x : Any) : String {
return when (x) {
Season.WINTER -> "winter"
Season.SPRING -> "spring"
Season.SUMMER -> "summer"
else -> "other"
}
}
// 0 TABLESWITCH
// 0 LOOKUPSWITCH