mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
252 B
Rust
15 lines
252 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"));
|
|
}
|