Files
rust/tests/pretty/match-naked-expr-medium.rs

15 lines
408 B
Rust
Raw Normal View History

//@ pp-exact
fn main() {
2015-01-25 22:05:03 +01:00
let x = Some(3);
let _y =
2012-08-06 12:34:08 -07:00
match x {
2014-04-15 18:17:48 -07:00
Some(_) =>
["some(_)".to_string(), "not".to_string(), "SO".to_string(),
"long".to_string(), "string".to_string()],
2014-04-15 18:17:48 -07:00
None =>
["none".to_string(), "a".to_string(), "a".to_string(),
"a".to_string(), "a".to_string()],
};
}