Reports suspicious calls to System.arraycopy().

The inspection reports the following cases:

Example:

  void foo() {
    int[] src = new int[] { 1, 2, 3, 4 };
    System.arraycopy(src, 0, src, 1, 2); // warning: Copying to the same array with intersecting ranges
  }