mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
The have incompatible DfType, so strange things may happen GitOrigin-RevId: 54af1bcbfa7d0de67cac9c02b02fadbefb004a72
9 lines
191 B
Java
9 lines
191 B
Java
import java.util.*;
|
|
|
|
public class ArrayAccessWithCastInCountedLoop {
|
|
void aioobe(int[] arr) {
|
|
for (long i = 0; i < arr.length; i++) {
|
|
System.out.println(arr[(int) i]);
|
|
}
|
|
}
|
|
} |