mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
9 lines
156 B
Java
9 lines
156 B
Java
class XYZ {
|
|
static int name;
|
|
|
|
void method() {
|
|
System.out.println(name);
|
|
int name = 27;
|
|
System.out.println(XYZ.name);
|
|
}
|
|
} |