mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 19:49:20 +07:00
bd1a21a02a
GitOrigin-RevId: ec42a9047ba63b0cbaddd8357d11ae2ed56ed6b6
11 lines
165 B
Java
11 lines
165 B
Java
// "Move assignment to field declaration" "true"
|
|
public class Main {
|
|
int i = 1;
|
|
|
|
public void test(int x) {
|
|
switch (x) {
|
|
case 1 -> {
|
|
}
|
|
}
|
|
}
|
|
} |