diff options
author | Andy Clement <aclement@pivotal.io> | 2017-09-24 22:04:26 -0700 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2017-09-24 22:04:26 -0700 |
commit | a79709a8d52f49c93b0b7ab18c0a4fe84087bf50 (patch) | |
tree | b77f370982fd35e8eb09d56a5d022b7d373d4610 /tests | |
parent | ab8339852515f04236d41b9af486ea9f0c50c6c7 (diff) | |
download | aspectj-a79709a8d52f49c93b0b7ab18c0a4fe84087bf50.tar.gz aspectj-a79709a8d52f49c93b0b7ab18c0a4fe84087bf50.zip |
more testdata for 1.9
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bugs190/various/Code.java | 11 |
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); + } +} |