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