1
0
şunun yansıması https://github.com/eclipse-aspectj/aspectj.git eşitlendi 2024-08-26 05:57:44 +02:00
org.aspectj/tests/pureJava/IllegalForwardReference.java
2002-12-16 18:51:06 +00:00

12 satır
257 B
Java

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;
}