0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-11-22 10:25:09 +01:00
rust/tests/pretty/match-naked-expr.rs

11 lines
177 B
Rust

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