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

public class StrayDot {
    public static void main(String[] args) {
        new StrayDot().realMain(args);
    }
    
    public void realMain(String[] args) {
        .int i = 13;
        int. z = 13;
        int .j = 13;
        int k. = 13;
        int l .= 13;
        int m =. 13;
        int n = .13;
        Tester.check(false, "Shouldn't have compiled");
    }
}