aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs180/pr431976/Code.java
blob: a58ea4ecc022c2e0d774d107ab4ba68ebac9c132 (plain)
1
2
3
4
5
6
7
8
9
10
import org.aspectj.lang.annotation.SuppressAjWarnings;

privileged aspect BugThisJoinPoint {

	@SuppressAjWarnings("adviceDidNotMatch")
	void around(): execution(boolean forceFocus ()) {
		thisJoinPoint.getThis();
	}
}