process c-style arrays in setInitializer (IDEA-20538 )

This commit is contained in:
anna
2011-08-26 17:57:19 +02:00
parent 79e57eb2d3
commit 9bc5f34ff8
3 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
// "Move assignment to field declaration" "true"
public class Foo {
protected boolean isString[] = new boolean[123];
public Foo() {
}
}

View File

@@ -0,0 +1,9 @@
// "Move assignment to field declaration" "true"
public class Foo {
protected boolean isString[] ;
public Foo() {
isSt<caret>ring = new boolean[123];
}
}