// "Unwrap 'switch'" "true-preview" class X { String test(char c) { switch (c) { default: if(c == 'a') { System.out.println("foo"); break; } break; } System.out.println("oops"); } }