blob: eb967577ffb1aea10dc88e3b7116e21f50403a35 [file] [log] [blame]
// run-pass
// rustc --test match_borrowed_str.rs.rs && ./match_borrowed_str.rs
fn compare(x: &str, y: &str) -> bool {
match x {
"foo" => y == "foo",
_ => y == "bar",
}
}
pub fn main() {
assert!(compare("foo", "foo"));
}