mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 05:20:54 +07:00
12 lines
146 B
Java
12 lines
146 B
Java
// "Move assignment to field declaration" "false"
|
|
public class X {
|
|
int i;
|
|
void f()
|
|
{
|
|
<caret>i=0;
|
|
}
|
|
{
|
|
i=1;
|
|
}
|
|
}
|