mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-07 19:36:56 +07:00
9 lines
154 B
Java
9 lines
154 B
Java
// "Remove local variable 'i'" "true"
|
|
public class Main {
|
|
void test(String s) {
|
|
int <caret>i;
|
|
switch(s) {
|
|
case "foo" -> i = 1;
|
|
}
|
|
}
|
|
} |