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