ec9370c30b
- Keep the test data under "native/native.tests/testData/klib/" dir - Rename tests from "klib ir" to "klib dump-ir"
8 lines
124 B
Kotlin
Vendored
8 lines
124 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
package test
|
|
|
|
enum class Color(val rgb: Int) {
|
|
RED(0xFF0000),
|
|
GREEN(0x00FF00),
|
|
BLUE(0x0000FF)
|
|
} |