mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
12 lines
137 B
Java
12 lines
137 B
Java
class Test {
|
|
private static final int f = 0;
|
|
|
|
void foo () {
|
|
int k = f;
|
|
}
|
|
|
|
int bar () {
|
|
return f;
|
|
}
|
|
}
|