mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:08:52 +07:00
12 lines
155 B
Java
12 lines
155 B
Java
// "Move assignment to field declaration" "false"
|
|
public class Main {
|
|
int i;
|
|
|
|
Main() {
|
|
i += 1;
|
|
}
|
|
|
|
public void test() {
|
|
i +<caret>= 1;
|
|
}
|
|
} |