Files

14 lines
323 B
Java

// "Merge with the default 'switch' branch" "GENERIC_ERROR_OR_WARNING"
class C {
void test(int n) {
String s = switch (n) {
default:
case 1:
break "a";
case 2:
break "b";
case 3:
<caret>break "a";
};
}
}