e84339a0d3
'Deprecated' annotation can't be applied to field itself.
8 lines
104 B
Kotlin
Vendored
8 lines
104 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
enum class Test {
|
|
@Deprecated("") ENTRY1,
|
|
ENTRY2,
|
|
@Deprecated("") ENTRY3
|
|
}
|