Files
openide/java/java-tests/testData/codeInsight/surroundAutoCloseable/SplitVar.java
2015-06-19 13:44:33 +03:00

14 lines
323 B
Java

import java.io.FileInputStream;
import java.io.IOException;
import java.nio.channels.FileChannel;
class C {
void m(File file) throws IOException {
<caret>FileInputStream stream = new FileInputStream(file);
int x;
FileChannel ch = stream.getChannel();
ch.close();
x = 0;
}
}