org.aspectj/tests/pureJava/SimpleSpec.java

10 lines
220 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
public class SimpleSpec {
public void m() {
throw new RuntimeException();
throw new Integer(1);
for (;;) { System.out.println("hi"); }
for (;1;) { System.out.println("hi"); }
}
}