aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/bug70619/Order2.aj
blob: 9ee9c55cb965acb8b508b8ce1288c5cced9a5cf3 (plain)
1
2
3
4
5
6
aspect Conflict2 {
	after(): execution(* *(..)) { }
  declare precedence: Conflict2, Conflict1;

 
}