mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 13:15:25 +07:00
9 lines
163 B
Java
9 lines
163 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;
|
|
}
|
|
}
|