aboutsummaryrefslogtreecommitdiffstats
path: root/tests/errors/BadValue.java
blob: 08f6b063c253690bf8e6932f27ce87eff9973638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import org.aspectj.testing.*;

public class BadValue {
    public static void main(String[] args) {
        new BadValue().realMain(args);
    }
    
    public void realMain(String[] args) {
        int i = ,;
        //String s = ,;
        Tester.check(false, "Shouldn't have compiled");
    }
}