rust/tests/ui/binding/borrowed-ptr-pattern-2.rs
2023-01-11 09:32:08 +00:00

14 lines
210 B
Rust

// run-pass
fn foo(s: &String) -> bool {
match &**s {
"kitty" => true,
_ => false
}
}
pub fn main() {
assert!(foo(&"kitty".to_string()));
assert!(!foo(&"gata".to_string()));
}