aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pureJava/IllegalForwardReference.java
blob: 39750c7a95c6a87fa6c0e9ce8c6a5c06930e27e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
import org.aspectj.testing.Tester;

public class IllegalForwardReference {
    public static void main(String[] args) {
        System.out.println(j + ", " + i);
        Tester.check(true, "compiled!");
    }

    static int j = i;
    static int i = 13;
}