mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
13 lines
249 B
Java
13 lines
249 B
Java
// "Copy 'switch' branch" "true-preview"
|
|
class C {
|
|
void foo(int n) {
|
|
String s = "";
|
|
switch (n) {
|
|
case 1:
|
|
<caret>case 2:
|
|
case 3:
|
|
s = "x";
|
|
break;
|
|
}
|
|
}
|
|
} |