diff options
Diffstat (limited to 'tests/apt/test2/Marker.java')
-rw-r--r-- | tests/apt/test2/Marker.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/apt/test2/Marker.java b/tests/apt/test2/Marker.java new file mode 100644 index 000000000..fd96b87df --- /dev/null +++ b/tests/apt/test2/Marker.java @@ -0,0 +1,8 @@ +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; + +@Retention(RetentionPolicy.RUNTIME) +public @interface Marker { + +} + |