mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 04:27:40 +07:00
bd1a21a02a
GitOrigin-RevId: ec42a9047ba63b0cbaddd8357d11ae2ed56ed6b6
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;
|
|
}
|
|
}
|
|
} |