class C { void test(int n) { String s = switch (n) { default: case 1: yield "a"; case 2: yield "b"; case 3: yield "a"; }; } }