mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 23:39:07 +07:00
TODOs are listed in the J2KNullityInferrer Javadoc. KTIJ-29147 GitOrigin-RevId: 2949b6d7c6b72b586ea6d3af89d0f2e655edcc6d
9 lines
172 B
Java
9 lines
172 B
Java
class ArrayField {
|
|
void test() {
|
|
String[] array = new String[0];
|
|
|
|
for (String s : array) {
|
|
System.out.println(s.length());
|
|
}
|
|
}
|
|
} |