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-08 02:56:49 +09:00
// 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()],
};
}