os-rust/tests/pretty/match-naked-expr.rs

10 lines
177 B
Rust

//@ pp-exact
fn main() {
let x = Some(3);
let _y =
match x {
Some(_) => "some(_)".to_string(),
None => "none".to_string(),
};
}