blob: c215d0e6581f09ebb7d1a0381388f2fefde3cc33 [file] [log] [blame]
import java.io.*;
public class X {
void f() {
try {
new FileInputStream("file.txt");
}
catch (FileNotFoundException e) {
}
}
}