mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 21:55:38 +07:00
GitOrigin-RevId: 22a46c15d8900d8a31514846755a013f6a67ad42
11 lines
173 B
Java
11 lines
173 B
Java
// "Move assignment to field declaration" "true-preview"
|
|
public class Main {
|
|
int i = 1;
|
|
|
|
public void test(int x) {
|
|
switch (x) {
|
|
case 1 -> {
|
|
}
|
|
}
|
|
}
|
|
} |