aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR154054_2/base/A.aj
blob: 123a4007a6c945cc846a6199d86dc3cfbf0460a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
public aspect A {
  before(): execution(* *(..)) { System.out.println("abc");}
  void around(): execution(* *(..)) { proceed();}

  void around(): execution(* *(..)) {
    try {
      proceed();
    } catch (Exception e) {
    }
  }
}