summaryrefslogtreecommitdiffstats
path: root/tests/bugs/CircularPrecedence.java
blob: 610a29e85e7b7c3c82efe75d2a9794150b8c476b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import org.aspectj.testing.Tester;

/** @testcase Bugzilla Bug 29689  
   Declare precedence should not allow multiple * patterns 

 */
public class CircularPrecedence {

    public static void main(String[] args) {
    }
    
    
	public static aspect Coordinator {
	    declare precedence : *, Tracing, *;  // should be error
	}
}

aspect Tracing {
}