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

9 lines
194 B
Java

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