diff options
Diffstat (limited to 'tests/bugs180/pr431976/Code.java')
-rw-r--r-- | tests/bugs180/pr431976/Code.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs180/pr431976/Code.java b/tests/bugs180/pr431976/Code.java new file mode 100644 index 000000000..a58ea4ecc --- /dev/null +++ b/tests/bugs180/pr431976/Code.java @@ -0,0 +1,10 @@ +import org.aspectj.lang.annotation.SuppressAjWarnings; + +privileged aspect BugThisJoinPoint { + + @SuppressAjWarnings("adviceDidNotMatch") + void around(): execution(boolean forceFocus ()) { + thisJoinPoint.getThis(); + } +} + |