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