mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 16:50:55 +07:00
7 lines
184 B
Java
7 lines
184 B
Java
class Test {
|
|
public static void main(String[] args) {
|
|
int i;
|
|
int[] iA = {10,20};
|
|
iA[<error descr="Variable 'i' might not have been initialized">i</error>] = i = 30;
|
|
}
|
|
} |