org.aspectj/tests/pureJava/IllegalForwardReference.java

12 lines
257 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
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;
}