blob: f0b4db52b1acafd1d71ad60463168cbf01d8434b [file] [log] [blame]
import java.io.*;
public class X {
void f() {
<spot>try</spot> (FileInputStream in = new FileInputStream("in");
FileOutputStream out = new FileOutputStream("out")) {
doSomethingWithStreams(in, out);
} catch (IOException e) {}
}
}