blob: 9e6e5fde8267f2fb56a684ee749e8acb2130cef6 [file] [log] [blame]
package trycatch_out;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
public class TestInitializer {
private static InputStream input;
static {
try {
/*[*/input = new FileInputStream("myfile");/*]*/
} catch (FileNotFoundException e) {
}
}
}