mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-07 11:06:58 +07:00
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;
|
|
}
|
|
}
|
|
} |