blob: d345a1d4fb757bbe616605531ac8fe2fd1bb2b81 (
plain)
1
2
3
4
5
6
7
8
9
|
public class SimpleSpec {
public void m() {
throw new RuntimeException();
throw new Integer(1);
for (;;) { System.out.println("hi"); }
for (;1;) { System.out.println("hi"); }
}
}
|