mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
261 B
Rust
19 lines
261 B
Rust
// check-pass
|
|
#![feature(string_deref_patterns)]
|
|
|
|
fn foo(s: &String) -> i32 {
|
|
match *s {
|
|
"a" => 42,
|
|
_ => -1,
|
|
}
|
|
}
|
|
|
|
fn bar(s: Option<&&&&String>) -> i32 {
|
|
match s {
|
|
Some(&&&&"&&&&") => 1,
|
|
_ => -1,
|
|
}
|
|
}
|
|
|
|
fn main() {}
|