ebb9659e03
Currently JVM IR is not supported in kapt, so almost all tests are failing, and thus are muted with IGNORE_BACKEND. #KT-49682
12 lines
287 B
Kotlin
Vendored
12 lines
287 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
|
|
enum class Color {
|
|
BLACK, `WHI-TE`
|
|
}
|
|
|
|
@Anno(Color.`WHI-TE`)
|
|
annotation class Anno(val color: Color)
|
|
|
|
// EXPECTED_ERROR(kotlin:7:1) an enum annotation value must be an enum constant
|
|
// EXPECTED_ERROR(other:-1:-1) 'WHI-TE' is an invalid Java enum value name
|