diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-11-26 07:34:01 +0100 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-11-26 08:51:18 +0100 |
commit | cbdb8e067c1c2b0d8ac19015ea4f7aa224eb54de (patch) | |
tree | f2958db2719adda5efd3b5f07cdab336efece4e6 /tests/bugs198/github_105/BarAnnotation.java | |
parent | bc2c65717d96e5e9cc1a454e5b0f8f258f2d802e (diff) | |
download | aspectj-cbdb8e067c1c2b0d8ac19015ea4f7aa224eb54de.tar.gz aspectj-cbdb8e067c1c2b0d8ac19015ea4f7aa224eb54de.zip |
Incorporate JDT Core fix + test for #105
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'tests/bugs198/github_105/BarAnnotation.java')
-rw-r--r-- | tests/bugs198/github_105/BarAnnotation.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs198/github_105/BarAnnotation.java b/tests/bugs198/github_105/BarAnnotation.java new file mode 100644 index 000000000..eaee4af2a --- /dev/null +++ b/tests/bugs198/github_105/BarAnnotation.java @@ -0,0 +1,11 @@ +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Target({ ElementType.TYPE }) +@Retention(RetentionPolicy.RUNTIME) +public @interface BarAnnotation { + // Note: no default value + String name(); +} |