aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs183/436653/XA3.java
blob: 483d310aea190197017c973d7721ffb5dc770ff5 (plain)
1
2
3
4
5
6
7
8
9
import org.aspectj.lang.annotation.*;

// Aspect deactivated if A or B is missing (although aspect only really needs A)
@RequiredTypes({"A","B"})
aspect XA2 {
  @SuppressAjWarnings("adviceDidNotMatch")
  before(): execution(* A.*(..)) {}
}