aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs187
diff options
context:
space:
mode:
authorAndy Clement <aclement@pivotal.io>2015-08-06 13:53:56 -0700
committerAndy Clement <aclement@pivotal.io>2015-08-06 13:53:56 -0700
commit7a61a0d50d7371ef0a8e9904e8da7e93922fe8e4 (patch)
treea93912af3c6f420f8d6e3de50a215f94d4796585 /tests/bugs187
parent9f19c3d57acfe94b07fcb060abef1ad0e63fb4eb (diff)
downloadaspectj-7a61a0d50d7371ef0a8e9904e8da7e93922fe8e4.tar.gz
aspectj-7a61a0d50d7371ef0a8e9904e8da7e93922fe8e4.zip
Support annotation conversion for class annotation values
Issue: https://bugs.eclipse.org/bugs/show_bug.cgi?id=474165
Diffstat (limited to 'tests/bugs187')
-rw-r--r--tests/bugs187/474165/B.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/bugs187/474165/B.java b/tests/bugs187/474165/B.java
new file mode 100644
index 000000000..7b1bb1950
--- /dev/null
+++ b/tests/bugs187/474165/B.java
@@ -0,0 +1,20 @@
+// HasMethod with anno value matching
+
+@interface I {
+ Class i();
+}
+aspect A {
+ declare parents: hasmethod(@I(i=String.class) * *(..)) implements java.io.Serializable;
+}
+
+public class B {
+@I(i=String.class) public void m() {}
+ public static void main(String []argv) {
+ B b = new B();
+ if (!(b instanceof java.io.Serializable)) throw new IllegalStateException("");
+ }
+}
+class C {
+@I(i=Integer.class) public void m() {}
+}
+