mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-20 00:03:37 +07:00
GitOrigin-RevId: 3d20d29f9b7e2f0a3a989991af2788572449b0de
9 lines
157 B
Java
9 lines
157 B
Java
// "Remove local variable 'i'" "true"
|
|
public class Main {
|
|
int test(String s) {
|
|
int <caret>i;
|
|
return switch(s) {
|
|
default -> i = 1;
|
|
}
|
|
}
|
|
} |