mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
11 lines
206 B
Java
11 lines
206 B
Java
// "Copy 'switch' branch" "true-preview"
|
|
class C {
|
|
void foo(int n) {
|
|
String s = "";
|
|
switch (n) {
|
|
case 1:
|
|
case 2:<caret>
|
|
s = "x";
|
|
}
|
|
}
|
|
} |