blob: 7352ca19236683fe245f9e635c12e9af5ee04a1d [file] [log] [blame]
package trycatch18_in;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
class TestTry1 {
FileInputStream foo() {
try {
/*[*/FileInputStream f = new FileInputStream("a.b");
return f;/*]*/
} catch (FileNotFoundException e) {
// do nothing
}
return null;
}
}