Files
openide/java/java-tests/testData/compileServer/incremental/annotations/removeAnnotationTarget/A.java.new
Dmitry Boulytchev (dboulytchev@gmail.com) 7d194f269e Finishing setting up tests (compiler server).
2012-02-02 01:13:16 +04:00

7 lines
134 B
Plaintext

import java.lang.annotation.*;
import static java.lang.annotation.ElementType.*;
@Target(TYPE)
public @interface A {
int value();
}