diff options
Diffstat (limited to 'tests/bugs153/pr132080/TestAroundClosure.aj')
-rw-r--r-- | tests/bugs153/pr132080/TestAroundClosure.aj | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/bugs153/pr132080/TestAroundClosure.aj b/tests/bugs153/pr132080/TestAroundClosure.aj new file mode 100644 index 000000000..b23254576 --- /dev/null +++ b/tests/bugs153/pr132080/TestAroundClosure.aj @@ -0,0 +1,7 @@ +public aspect TestAroundClosure { + void around () : execution(public new()) && within(!TestAroundClosure) { + System.out.println("> " + thisJoinPoint.getSignature()); + proceed(); + System.out.println("< " + thisJoinPoint.getSignature()); + } +}
\ No newline at end of file |