Files
openide/jvm/jvm-analysis-kotlin-tests/testData/codeInspection/scheduledForRemoval/pkg/AnnotatedAnnotation.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
338 B
Java

package pkg;
import org.jetbrains.annotations.ApiStatus;
@ApiStatus.ScheduledForRemoval(inVersion = "123.456")
public @interface AnnotatedAnnotation {
String nonAnnotatedAttributeInAnnotatedAnnotation() default "";
@ApiStatus.ScheduledForRemoval(inVersion = "123.456") String annotatedAttributeInAnnotatedAnnotation() default "";
}