mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 07:14:21 +07:00
8 lines
122 B
Java
8 lines
122 B
Java
class C {
|
|
{
|
|
int[] a = new int[1];
|
|
int i = a[1];
|
|
i = 42;
|
|
System.out.println(i);
|
|
}
|
|
} |