diff options
Diffstat (limited to 'tests/bugs1919/github_24/ExactlyMatchingAspect.aj')
-rw-r--r-- | tests/bugs1919/github_24/ExactlyMatchingAspect.aj | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs1919/github_24/ExactlyMatchingAspect.aj b/tests/bugs1919/github_24/ExactlyMatchingAspect.aj new file mode 100644 index 000000000..8a78394c3 --- /dev/null +++ b/tests/bugs1919/github_24/ExactlyMatchingAspect.aj @@ -0,0 +1,9 @@ +public aspect ExactlyMatchingAspect { + after() : execution(public MaybeMissingClass MaybeMissingClass.*()) { + System.out.println(thisJoinPoint); + } + + after() : execution(public MaybeMissingClass[] MaybeMissingClass.*()) { + System.out.println(thisJoinPoint); + } +} |