summaryrefslogtreecommitdiffstats
path: root/tests/features160/weavingJavaxPackage/X.aj
blob: 8c52b24c1f7aaed47afce44d7e0b6eba30ef560e (plain)
1
2
3
4
5
aspect X {
  before(): execution(* f*(..)) {
    System.out.println("advised");
  }
}