mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
32 lines
719 B
Kotlin
Vendored
32 lines
719 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
import kotlin.test.assertEquals
|
|
|
|
class A {
|
|
companion object {
|
|
enum class Season {
|
|
WINTER,
|
|
SPRING,
|
|
SUMMER,
|
|
AUTUMN
|
|
}
|
|
}
|
|
}
|
|
|
|
fun foo(x : A.Companion.Season) : String {
|
|
return when (x) {
|
|
A.Companion.Season.WINTER -> "winter"
|
|
A.Companion.Season.SPRING -> "spring"
|
|
A.Companion.Season.SUMMER -> "summer"
|
|
else -> "other"
|
|
}
|
|
}
|
|
|
|
fun box() : String {
|
|
assertEquals("winter", foo(A.Companion.Season.WINTER))
|
|
assertEquals("spring", foo(A.Companion.Season.SPRING))
|
|
assertEquals("summer", foo(A.Companion.Season.SUMMER))
|
|
assertEquals("other", foo(A.Companion.Season.AUTUMN))
|
|
return "OK"
|
|
}
|