Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
261 B
Rust
Raw Normal View History

2022-07-13 18:13:07 +00:00
// check-pass
2022-11-11 14:31:07 +00:00
#![feature(string_deref_patterns)]
2022-07-13 18:13:07 +00:00
fn foo(s: &String) -> i32 {
match *s {
"a" => 42,
_ => -1,
}
}
fn bar(s: Option<&&&&String>) -> i32 {
match s {
Some(&&&&"&&&&") => 1,
_ => -1,
}
}
fn main() {}