rust/tests/ui/issues/issue-3574.rs

15 lines
253 B
Rust

//@ 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"));
}