aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs181/431976/Code.java
blob: c880a937e8569e372bb4bfb317c4c9d35e29b589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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();
	}
}