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