mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
14 lines
220 B
Java
14 lines
220 B
Java
class Test {
|
|
private int <warning descr="Field can be converted to a local variable">f</warning>;
|
|
|
|
void foo () {
|
|
f = 0;
|
|
int k = f;
|
|
}
|
|
|
|
int bar () {
|
|
f = 5;
|
|
return f;
|
|
}
|
|
}
|