mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 02:09:59 +07:00
IDEA would support latest preview only GitOrigin-RevId: 6609e80acced9e1be07880c14de239f75afcc78b
9 lines
151 B
Java
9 lines
151 B
Java
// "Remove variable 'i'" "true"
|
|
public class Main {
|
|
int test(String s) {
|
|
int <caret>i;
|
|
return switch(s) {
|
|
default -> i = 1;
|
|
}
|
|
}
|
|
} |