Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/annotations/inapplicable.java
2010-06-25 12:46:40 +04:00

8 lines
221 B
Java

import java.lang.annotation.*;
//OK
@Target({ElementType.TYPE})
@Expose @interface Expose {}
@Target({ElementType.FIELD})
@<error descr="'@Expose1' not applicable to annotation type">Expose1</error>@interface Expose1 {}