disable "move initializer to" fixes on malformed fields

This commit is contained in:
peter
2017-07-13 17:58:13 +02:00
parent bf04ef0dbd
commit 90276fd30c
2 changed files with 10 additions and 1 deletions
@@ -0,0 +1,8 @@
// "Move initializer to constructor" "false"
public class X {
int <caret>i=new ();
X() {
}
}