// "Unwrap 'switch'" "true-preview" class X { String test(char c) { for(int i=0; i<10; i++) switch (c) { default: if(c == 'a') { System.out.println("foo"); break; } System.out.println("bar"); } System.out.println("oops"); return ""; } }