create subclass: restore caret position after delegate constructors are inserted (IDEA-105566)

This commit is contained in:
anna
2013-04-17 15:58:51 +02:00
parent b18149e338
commit 47d6ba424e
6 changed files with 38 additions and 6 deletions
@@ -0,0 +1,6 @@
public class Test {
private abstract class Inner {
Inner(String s){}
abstract void bar();
}
}