WALA/com.ibm.wala.core.testdata/src/slice/JustThrow.java

18 lines
312 B
Java

package slice;
import java.io.IOException;
public class JustThrow {
private static int throwException() {
throw new RuntimeException();
}
public static void main(String[] argv) throws IOException{
doNothing(throwException());
}
private static void doNothing(int x) {
}
}