Reports array initializers without new array expressions and suggests adding them.

Example:


  int[] a = {42}

After the quick-fix is applied:


  int[] a = new int[]{42}