On 2/5/2019 1:14 PM, Rubn wrote:
> WHAT. WHAT. Where do you see an assignment from size_t to int here?
>
> int[] arr = someRandomArray();
> for( int i = 0; i < arr.length; ++i ) {
> dg( i, arr[i] );
> }
>
> ???
The ++i overflows and the loop never terminates.