Files
kotlin-fork/native/native.tests/testData/klibIr/enum.kt
T
Johan Bay fafea27283 [klib tool] Add option to print ir
Dumping the IR from a klib is useful for debugging klib compilations.

^KT-58877
2023-07-31 09:45:19 +00:00

8 lines
124 B
Kotlin
Vendored

// FIR_IDENTICAL
package test
enum class Color(val rgb: Int) {
RED(0xFF0000),
GREEN(0x00FF00),
BLUE(0x0000FF)
}