Files
2022-04-26 11:39:49 +00:00

9 lines
251 B
Java

// "Unwrap code block of labeled rule" "GENERIC_ERROR_OR_WARNING"
class C {
String foo(int n) {
return switch (n) {
case 1 -> /*1*/ { /*2*/<caret>yield /*3*/"a"/*4*/; /*5*/ } /*6*/
default -> "b";
};
}
}