aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/bug70619/Precedence.java
blob: 30680186706001de7c9941e6ad17dae529edc818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Conflict { public static void main(String[] args) { } }

aspect Conflict1 {
  declare precedence: Conflict1,Conflict2;

  before(): execution(* *(..)) { }
}

aspect Conflict2 {
  declare precedence: Conflict2, Conflict1;

  after(): execution(* *(..)) { }
}