rust/src/test/run-pass/alt-naked-record.rs
2012-08-06 15:36:30 -07:00

8 lines
77 B
Rust

fn main() {
let x = match 0 {
_ => {
x: 0
}
};
}