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 17:56:49 +00:00
// pp-exact
fn main() {
2015-01-25 21:05:03 +00:00
let x = Some(3);
let _y =
2012-08-06 19:34:08 +00:00
match x {
2014-04-16 01:17:48 +00:00
Some(_) =>
["some(_)".to_string(), "not".to_string(), "SO".to_string(),
"long".to_string(), "string".to_string()],
2014-04-16 01:17:48 +00:00
None =>
["none".to_string(), "a".to_string(), "a".to_string(),
"a".to_string(), "a".to_string()],
};
}