Files
openide/java/java-tests/testData/codeInsight/surroundAutoCloseable/Expression.java
2017-11-27 18:05:19 +01:00

7 lines
141 B
Java

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