blob: ce9489a00f2c68b0041cf33182728c3560b0bc5e [file] [log] [blame]
//@ run-pass
#![allow(dead_code)]
struct X { x: isize }
pub fn main() {
let _x = match 0 {
_ => X {
x: 0
}
};
}