Files
kotlin-fork/idea/testData/quickfix/migration/enumConstructor/precedingAnnotation.kt.after
T

11 lines
244 B
Plaintext
Vendored

// "Change to short enum entry super constructor in the whole project" "true"
annotation class My
annotation class Your
annotation class His
enum class MyEnum(val i: Int) {
@My FIRST(1),
@My @Your SECOND(2),
@Your @His THIRD(3)
}