b0e97de8a8
Placing location table inside .java file triggers annotation processor to run on each line table modification (even when the stub declarations themselves are the same). So we move it to the separate file.
9 lines
264 B
Kotlin
Vendored
9 lines
264 B
Kotlin
Vendored
// EXPECTED_ERROR(-1;-1) 'WHI-TE' is an invalid Java enum value name
|
|
// EXPECTED_ERROR(6;20) cannot find symbol (Kotlin location: /invalidFieldName.kt: (8, 1))
|
|
|
|
enum class Color {
|
|
BLACK, `WHI-TE`
|
|
}
|
|
|
|
@Anno(Color.`WHI-TE`)
|
|
annotation class Anno(val color: Color) |