Reports constant new array expressions that can be replaced with an array initializer. Array initializers can omit the type because
it is already specified in the left side of the assignment.
Example:
int[] foo = new int[] {42};
After the quick-fix is applied:
int[] foo = {42};