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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
407 B
Rust
Raw Normal View History

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