blob: 14412ae01b817ed35b143e849d9488278a181706 [file] [log] [blame]
import java.io.*;
public class X {
void f() {
try {
new FileInputStream("file.txt");
} <spot>catch</spot> (IOException e) {
e.printStackTrace();
}
}
}