summaryrefslogtreecommitdiffstats
path: root/tests/bugs173/lyor/Code.java
diff options
context:
space:
mode:
authorAndy Clement <andrew.clement@gmail.com>2013-04-01 14:34:25 -0700
committerAndy Clement <andrew.clement@gmail.com>2013-04-01 14:34:25 -0700
commit99414d4203fc52b93dfa8ecb69211766609137ad (patch)
tree22f560022a2bd577bef7b2bc9c07cebf1c2ec0a1 /tests/bugs173/lyor/Code.java
parent1afe1016d04389da4918b3d91f0d8125183dd040 (diff)
downloadaspectj-99414d4203fc52b93dfa8ecb69211766609137ad.tar.gz
aspectj-99414d4203fc52b93dfa8ecb69211766609137ad.zip
Fix for 404601
Added 1.7.3 test suite
Diffstat (limited to 'tests/bugs173/lyor/Code.java')
-rw-r--r--tests/bugs173/lyor/Code.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/bugs173/lyor/Code.java b/tests/bugs173/lyor/Code.java
new file mode 100644
index 000000000..50b372627
--- /dev/null
+++ b/tests/bugs173/lyor/Code.java
@@ -0,0 +1,13 @@
+import java.lang.annotation.*;
+
+@Retention(RetentionPolicy.RUNTIME)
+@interface Foo {}
+
+aspect A {
+ declare @method: void *.getName(): @Foo;
+ public void Intface.getName() { }
+}
+
+interface Intface { }
+
+class C implements Intface {}