diff options
Diffstat (limited to 'tests/ltw/Aspect3.aj')
-rw-r--r-- | tests/ltw/Aspect3.aj | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/ltw/Aspect3.aj b/tests/ltw/Aspect3.aj index c27d9e1c2..08dff8c45 100644 --- a/tests/ltw/Aspect3.aj +++ b/tests/ltw/Aspect3.aj @@ -16,4 +16,9 @@ public aspect Aspect3 { before () : execution(void Main.test999()) { System.err.println("Aspect1.before_" + thisJoinPoint.getSignature().getName()); } + + // triggers noGuardForLazyTjp warning if that warning is enabled + before(): call(* someNonExistentMethod(..)) { + System.out.println(thisJoinPoint); + } } |