diff options
Diffstat (limited to 'tests/features167/overweaving/calls/A.aj')
-rw-r--r-- | tests/features167/overweaving/calls/A.aj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/features167/overweaving/calls/A.aj b/tests/features167/overweaving/calls/A.aj new file mode 100644 index 000000000..7ae3e52c5 --- /dev/null +++ b/tests/features167/overweaving/calls/A.aj @@ -0,0 +1,3 @@ +public aspect A { + before(): !cflow(adviceexecution()) && call(* *(..)) {System.out.println("A:"+thisJoinPointStaticPart);} +} |