1
0
espelhamento de https://github.com/eclipse-aspectj/aspectj.git sincronizado 2024-08-26 05:57:44 +02:00
org.aspectj/tests/pureJava/SimpleSpec.java
2002-12-16 18:51:06 +00:00

10 linhas
220 B
Java

public class SimpleSpec {
public void m() {
throw new RuntimeException();
throw new Integer(1);
for (;;) { System.out.println("hi"); }
for (;1;) { System.out.println("hi"); }
}
}