aboutsummaryrefslogtreecommitdiffstats
path: root/taskdefs/testdata/CompileWarning.java
blob: 9f68068af26bc93b0a5a394cf9689d12029a7fd8 (plain)
1
2
3
4
5
6
7
8
9
10
public class CompileWarning { 
    void run() {
    }
    static aspect A {
        declare warning : execution(void CompileWarning.run()) : 
            "expected warning";
    }
}