diff options
author | Andy Clement <andrew.clement@gmail.com> | 2013-04-01 14:34:25 -0700 |
---|---|---|
committer | Andy Clement <andrew.clement@gmail.com> | 2013-04-01 14:34:25 -0700 |
commit | 99414d4203fc52b93dfa8ecb69211766609137ad (patch) | |
tree | 22f560022a2bd577bef7b2bc9c07cebf1c2ec0a1 /tests/bugs173/lyor/Code.java | |
parent | 1afe1016d04389da4918b3d91f0d8125183dd040 (diff) | |
download | aspectj-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.java | 13 |
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 {} |