Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/deprecatedEnumEntryFields.kt
T
Dmitry Petrov e84339a0d3 JVM_IR: fields for deprecated enum entries have ACC_DEPRECATED flag
'Deprecated' annotation can't be applied to field itself.
2020-07-21 22:25:44 +03:00

8 lines
104 B
Kotlin
Vendored

// WITH_RUNTIME
enum class Test {
@Deprecated("") ENTRY1,
ENTRY2,
@Deprecated("") ENTRY3
}