// "Remove unreachable branches" "true-preview" class Main { static void fff() { switch ("one") { case "one": System.out.println("one"); case "two": System.out.println("two"); } } public static void main(String[] args) { fff(); } }