postfix templates incorrect expand IDEA-133867

This commit is contained in:
Andrey Starovoyt
2014-12-04 21:20:26 +03:00
parent 2a2b009535
commit 0b767366cb
28 changed files with 203 additions and 9 deletions
@@ -0,0 +1,11 @@
import java.lang.Exception;
public class Foo {
void m() {
methodCall(.throw<caret>
}
Exception methodCall(String s) {
return null;
}
}