68b94b07b8
Use the same condition as in the already existing `createIrEnumEntry` function (and as in psi2ir): enum class should be final unless there's an enum entry with any declaration other than its constructor. #KT-57216
8 lines
103 B
Kotlin
Vendored
8 lines
103 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
enum class Test {
|
|
@Deprecated("") ENTRY1,
|
|
ENTRY2,
|
|
@Deprecated("") ENTRY3
|
|
}
|