aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndy Clement <aclement@pivotal.io>2017-09-24 22:04:26 -0700
committerAndy Clement <aclement@pivotal.io>2017-09-24 22:04:26 -0700
commita79709a8d52f49c93b0b7ab18c0a4fe84087bf50 (patch)
treeb77f370982fd35e8eb09d56a5d022b7d373d4610 /tests
parentab8339852515f04236d41b9af486ea9f0c50c6c7 (diff)
downloadaspectj-a79709a8d52f49c93b0b7ab18c0a4fe84087bf50.tar.gz
aspectj-a79709a8d52f49c93b0b7ab18c0a4fe84087bf50.zip
more testdata for 1.9
Diffstat (limited to 'tests')
-rw-r--r--tests/bugs190/various/Code.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs190/various/Code.java b/tests/bugs190/various/Code.java
new file mode 100644
index 000000000..8285ca3d8
--- /dev/null
+++ b/tests/bugs190/various/Code.java
@@ -0,0 +1,11 @@
+public class Code {
+ public static void main(String []argv) {
+ System.out.println("running");
+ }
+}
+
+aspect X{
+ before(): call(* println(..)) && !within(X) {
+ System.out.println(thisJoinPoint);
+ }
+}