aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs172
diff options
context:
space:
mode:
authorAndy Clement <andrew.clement@gmail.com>2013-02-05 11:14:40 -0800
committerAndy Clement <andrew.clement@gmail.com>2013-02-05 11:14:40 -0800
commitedb41e385f232f7aebe1f6517d9a201221175a55 (patch)
tree9a7f39a97c943d7716caae59f2c241ea895a36c6 /tests/bugs172
parent46f90792c01a4333eb62bc2ea6a1dcfb3efb0d23 (diff)
downloadaspectj-edb41e385f232f7aebe1f6517d9a201221175a55.tar.gz
aspectj-edb41e385f232f7aebe1f6517d9a201221175a55.zip
391384: fix
Diffstat (limited to 'tests/bugs172')
-rw-r--r--tests/bugs172/pr391384/Code.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/bugs172/pr391384/Code.java b/tests/bugs172/pr391384/Code.java
new file mode 100644
index 000000000..e213586f4
--- /dev/null
+++ b/tests/bugs172/pr391384/Code.java
@@ -0,0 +1,17 @@
+import java.lang.annotation.*;
+
+@Retention(RetentionPolicy.RUNTIME)
+@interface Anno {
+ String[] value();
+}
+
+aspect Code {
+
+ @Anno({"xyz","abc"})
+ public void m() {}
+
+ pointcut p(): execution(public * @Anno(value="xyz=abc") *..*(..));
+
+ before() : p() { }
+
+}