mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
12 lines
122 B
Java
12 lines
122 B
Java
class Test {
|
|
int x = 2 + 2;
|
|
int y;
|
|
|
|
{
|
|
int temp = 3 + 3;
|
|
y = temp;
|
|
}
|
|
|
|
int z = 4 + 4;
|
|
}
|