mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
17 lines
299 B
Java
17 lines
299 B
Java
// "Create missing branches: 'false', and '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){
|
|
case true -> {
|
|
}
|
|
case false -> {
|
|
}
|
|
}
|
|
}
|
|
} |