// "Merge with the default 'switch' branch" "GENERIC_ERROR_OR_WARNING" class Test { void foo(String str) { switch (str) { case null: case "hello": case "blah blah blah": System.out.println(42); break; default: System.out.println(42); } } }