diff options
Diffstat (limited to 'tests/multiIncremental/PR152589/base/A.aj')
-rw-r--r-- | tests/multiIncremental/PR152589/base/A.aj | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/multiIncremental/PR152589/base/A.aj b/tests/multiIncremental/PR152589/base/A.aj new file mode 100644 index 000000000..fd2f78695 --- /dev/null +++ b/tests/multiIncremental/PR152589/base/A.aj @@ -0,0 +1,13 @@ + + +public aspect A { + after () throwing (Throwable th) : execution(* *(..)) { + System.err.println(thisEnclosingJoinPointStaticPart); + } +} + +class C1 { + public void anotherMethod() { + + } +} |