aboutsummaryrefslogtreecommitdiffstats
path: root/tests/errors/BadPointcutName.java
blob: 943f4955427902bb88e1fcd8d53daf7f6097a636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import org.aspectj.testing.Tester;

// PR#209

public aspect BadPointcutName {
    private static java.util.Vector v = new java.util.Vector();
    
    public static void main(String[] args) { test(); }

    public static void test() {
        Tester.check(true, ""); 
    }
    
    /*static*/ after() returning (): noSuchCut() {}
}