Files
openide/java/java-tests/testData/codeInsight/surroundAutoCloseable/Expression.java
T

7 lines
121 B
Java

import java.io.*;
class C {
void m(File file) throws IOException {
<caret>new FileInputStream(file);
}
}