Files
openide/jvm/jvm-analysis-kotlin-tests/testData/codeInspection/scheduledForRemoval/pkg/AnnotatedEnum.java
Sergey Patrikeev 856a375563 Unstable and ScheduledForRemoval inspections tests refactoring: move to single module, move code to files.
GitOrigin-RevId: e4fb80e92b276952d608d0b721301471ac4e7cd7
2019-07-02 06:52:16 +03:00

10 lines
274 B
Java

package pkg;
import org.jetbrains.annotations.ApiStatus;
@ApiStatus.ScheduledForRemoval(inVersion = "123.456")
public enum AnnotatedEnum {
NON_ANNOTATED_VALUE_IN_ANNOTATED_ENUM,
@ApiStatus.ScheduledForRemoval(inVersion = "123.456") ANNOTATED_VALUE_IN_ANNOTATED_ENUM
}