org.aspectj/tests/pureJava/SimpleSpec.java
2002-12-16 18:51:06 +00:00

10 lines
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"); }
}
}