mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
13 lines
263 B
Kotlin
Vendored
13 lines
263 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR
|
|
enum class Color(val rgb: Int) {
|
|
RED(0xff0000),
|
|
GREEN(0x00ff00),
|
|
BLUE(0x0000ff);
|
|
}
|
|
|
|
fun foo(): Int {
|
|
return Color.RED.rgb + Color.GREEN.rgb + Color.BLUE.rgb
|
|
}
|
|
|
|
fun box() = if (foo() == 0xffffff) "OK" else "Fail: ${foo()}"
|