rust/src/test/pretty/alt-naked-expr-medium.rs

11 lines
192 B
Rust
Raw Normal View History

// pretty-exact
fn main() {
let x = some(3);
let _y =
alt x {
some(_) => ~[~"some(_)", ~"not", ~"SO", ~"long", ~"string"],
none => ~[~"none"]
};
}