aboutsummaryrefslogtreecommitdiffstats
path: root/tests/errors/StraySlash.java
blob: e5323326a43671f49c5865d9dbf800f50b08dcba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import org.aspectj.testing.*;

public class StraySlash {
    public static void main(String[] args) {
        new StraySlash().realMain(args);
    }
    
    public void realMain(String[] args) {
        \
        /
        &
        *
        (
         )
         @
        #
        $
            %
            ^
        Tester.check(false, "Shouldn't have compiled");
    }
}