blob: 9d79b7b18e65d3ab7a515f626b29fc5cac1075d9 [file] [log] [blame]
//@ pp-exact
fn main() {
let x = Some(3);
let _y =
match x {
Some(_) => "some(_)".to_string(),
None => "none".to_string(),
};
}