Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
psi
/
Enums.kt
blob: dda485c8186481b2c3b46fa6648f0b6f2e8af26c [
file
]
enum
class
Color
(
val rgb
:
Int
)
{
RED
(
0xFF000
),
GREEN
(
0x00FF00
),
BLUE
(
0x0000FF
)
// the end
}