mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
9 lines
190 B
Java
9 lines
190 B
Java
// "Split values of 'switch' branch" "true-preview"
|
|
class C {
|
|
void foo(int n) {
|
|
String s = "";
|
|
switch (n) {
|
|
case <caret>1 + 1, 3 -> s = "x";
|
|
}
|
|
}
|
|
} |