mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
12 lines
158 B
Java
12 lines
158 B
Java
// "Move assignment to field declaration" "true-preview"
|
|
public class Main {
|
|
int i = 1;
|
|
|
|
Main() {
|
|
i += 1;
|
|
}
|
|
|
|
public void test() {
|
|
i = 1;
|
|
}
|
|
} |