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

public class FinalStatic {
    public static void main(String[] args) {
        new FinalStatic().realMain(args);
    }
    
    public void realMain(String[] args) {        
        Tester.check(false, "Shouldn't have compiled");
    }

    final static int i = -1;
    { i = 13; }
}