mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +07:00
14 lines
150 B
Java
14 lines
150 B
Java
class Test {
|
|
private int f;
|
|
|
|
void foo () {
|
|
f = 0;
|
|
int k = f;
|
|
}
|
|
|
|
int bar () {
|
|
f = 5;
|
|
return f;
|
|
}
|
|
}
|