Files
openide/java/java-tests/testData/codeInsight/template/postfix/templates/throw/incompleteExpression.java
2014-12-04 21:20:26 +03:00

11 lines
168 B
Java

import java.lang.Exception;
public class Foo {
void m() {
methodCall(.throw<caret>
}
Exception methodCall(String s) {
return null;
}
}