org.aspectj/tests/bugs/bug70619/Order2.aj
aclement 75852d7b19 Fix for Bug 70619
compiler aborts with "conflicting dominates orders" with circular declare precedences
2004-07-26 13:28:20 +00:00

6 lines
105 B
Plaintext

aspect Conflict2 {
after(): execution(* *(..)) { }
declare precedence: Conflict2, Conflict1;
}