blob: 40df85b1479b4dfa40313c6c0940494354d55ddc [file] [log] [blame]
// 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()));
}