Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/insertNew/after1.java
2018-05-28 13:08:22 +03:00

12 lines
116 B
Java

// "Insert new" "true"
class a {
void f() {
//c1
new RuntimeException(
//c2
)//c3
;
}
}