blob: 5e5003ba2e22a39b95334f4387e11fccf345b8ea [file] [log] [blame]
import java.io.*;
public class TestIO {
public static void main(String[] args) {
TestIO tio = new TestIO();
try {
tio.testBaby();
} catch (EOFException e) {
}
}
public void testBaby() throws EOFException {
throw new EOFException("test");
}
}