System.arraycopy()
.
Such calls are suspicious when:
src.length - srcPos
dest.length - destPos
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
}