diff options
Diffstat (limited to 'tests/bugs161/pr235597/SomeAnnotation.java')
-rw-r--r-- | tests/bugs161/pr235597/SomeAnnotation.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs161/pr235597/SomeAnnotation.java b/tests/bugs161/pr235597/SomeAnnotation.java new file mode 100644 index 000000000..3ac1453b1 --- /dev/null +++ b/tests/bugs161/pr235597/SomeAnnotation.java @@ -0,0 +1,10 @@ +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.METHOD) +public @interface SomeAnnotation { + +} |