mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-12 10:06:52 +07:00
9 lines
141 B
Java
9 lines
141 B
Java
// "Remove local variable 'i'" "true"
|
|
public class Main {
|
|
void test(String s) {
|
|
switch(s) {
|
|
case "foo" -> {
|
|
}
|
|
}
|
|
}
|
|
} |