diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2022-03-23 15:51:42 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2022-03-23 15:51:42 +0700 |
commit | 8ba1445b28ad396c34633aebd334e5259f815a55 (patch) | |
tree | 272600aefb33376cf3af11a35406bc43e074f2c8 /tests/bugs199/github_128/MarkerA.java | |
parent | 948ad9f39537d9cc9d38e8b5fc6fcb9bd685ed0f (diff) | |
download | aspectj-8ba1445b28ad396c34633aebd334e5259f815a55.tar.gz aspectj-8ba1445b28ad396c34633aebd334e5259f815a55.zip |
Move GH-128 tests from 1.9.8 to 1.9.9 bugs test suite after merge
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'tests/bugs199/github_128/MarkerA.java')
-rw-r--r-- | tests/bugs199/github_128/MarkerA.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs199/github_128/MarkerA.java b/tests/bugs199/github_128/MarkerA.java new file mode 100644 index 000000000..89e60978c --- /dev/null +++ b/tests/bugs199/github_128/MarkerA.java @@ -0,0 +1,9 @@ +import static java.lang.annotation.ElementType.METHOD; +import static java.lang.annotation.RetentionPolicy.RUNTIME; + +import java.lang.annotation.Retention; +import java.lang.annotation.Target; + +@Retention(RUNTIME) +@Target(METHOD) +public @interface MarkerA {} |