// "Copy 'switch' branch" "true" class C { void foo(String s) { String result = ""; switch (s) { case "foo": case null: case "bar": result = "x"; break; } } }