aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr148537
diff options
context:
space:
mode:
authoraclement <aclement>2006-07-05 08:36:09 +0000
committeraclement <aclement>2006-07-05 08:36:09 +0000
commit477c46dc2b5e2be500ea5281f09784d8b3d0cbde (patch)
treea12690aa15696ecc063afddfa48ebc93d24b5085 /tests/bugs153/pr148537
parent82f217fa97084beaa1c4c88ec2e96e4cf83e8aad (diff)
downloadaspectj-477c46dc2b5e2be500ea5281f09784d8b3d0cbde.tar.gz
aspectj-477c46dc2b5e2be500ea5281f09784d8b3d0cbde.zip
test for 148537
Diffstat (limited to 'tests/bugs153/pr148537')
-rw-r--r--tests/bugs153/pr148537/MyClass.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/bugs153/pr148537/MyClass.java b/tests/bugs153/pr148537/MyClass.java
new file mode 100644
index 000000000..ef6eed9a5
--- /dev/null
+++ b/tests/bugs153/pr148537/MyClass.java
@@ -0,0 +1,8 @@
+import java.lang.annotation.*;
+
+public class MyClass {
+
+ @Retention({RententionPolicy.RUNTIME})
+ private @interface MyAnnotation {
+ }
+}