2022-07-05 07:19:13 +00:00
|
|
|
// run-pass
|
|
|
|
// check-run-results
|
2022-11-11 14:31:07 +00:00
|
|
|
#![feature(string_deref_patterns)]
|
2022-07-05 07:19:13 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
test(Some(String::from("42")));
|
|
|
|
test(Some(String::new()));
|
|
|
|
test(None);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test(o: Option<String>) {
|
|
|
|
match o {
|
|
|
|
Some("42") => println!("the answer"),
|
|
|
|
Some(_) => println!("something else?"),
|
|
|
|
None => println!("nil"),
|
|
|
|
}
|
2022-07-05 07:42:19 +00:00
|
|
|
}
|