rust/tests/source/postfix-match/pf-match.rs
2024-03-06 00:51:45 -05:00

20 lines
329 B
Rust

#![feature(postfix_match)]
fn main() {
let val = Some(42);
val.match {
Some(_) => 2,
_ => 1
};
Some(2).match {
Some(_) => true,
None => false
}.match {
false => "ferris is cute",
true => "I turn cats in to petted cats",
}.match {
_ => (),
}
}