IDEA-83223 IDEA incorrectly inserts 'super' keyword with replace completion character.

This commit is contained in:
peter
2012-04-19 17:17:28 +02:00
parent 5f5db1e8b2
commit b42ed63049
4 changed files with 36 additions and 11 deletions
@@ -0,0 +1,10 @@
public class Util {
public Util(String a) {
this.a = a;
}
public Util() {
su<caret>this("2");
}
}