Files
kotlin-fork/compiler/testData/diagnostics/tests/enum/enumMissingName.kt
T
2021-06-20 22:07:11 +02:00

7 lines
147 B
Kotlin
Vendored

// FIR_IDENTICAL
// Error: name should present
enum class<!SYNTAX!><!>(val rgb : Int) {
RED(0xFF000),
GREEN(0x00FF00),
BLUE(0x0000FF)
}