diff options
author | aclement <aclement> | 2004-12-10 13:29:53 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-12-10 13:29:53 +0000 |
commit | 7228f3d18d71496a4089a7d5807b3d234124dd7b (patch) | |
tree | caba0314ff606197aab4d43a93a66f5ad4df7edd /tests/java5/annotations/SimpleAnnotation2.java | |
parent | d279a507f5633f03f307eb8e6ace52a7a5df4d17 (diff) | |
download | aspectj-7228f3d18d71496a4089a7d5807b3d234124dd7b.tar.gz aspectj-7228f3d18d71496a4089a7d5807b3d234124dd7b.zip |
Tests for declare parents where annotations are involved.
Diffstat (limited to 'tests/java5/annotations/SimpleAnnotation2.java')
-rw-r--r-- | tests/java5/annotations/SimpleAnnotation2.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/java5/annotations/SimpleAnnotation2.java b/tests/java5/annotations/SimpleAnnotation2.java new file mode 100644 index 000000000..66411fce8 --- /dev/null +++ b/tests/java5/annotations/SimpleAnnotation2.java @@ -0,0 +1,5 @@ +import java.lang.annotation.*; + +@Retention(RetentionPolicy.RUNTIME) +public @interface SimpleAnnotation2 { +} |