mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
15 lines
260 B
Java
15 lines
260 B
Java
// "Create missing switch branch 'true'" "true-preview"
|
|
import java.util.List;
|
|
|
|
class Test {
|
|
public static void main(String[] args) {
|
|
test(true);
|
|
}
|
|
|
|
public static void test(boolean b) {
|
|
switch (b<caret>){
|
|
case false -> {
|
|
}
|
|
}
|
|
}
|
|
} |