blob: 8d97ebe659097ba32e3fff0c96d46fa0626e1b0f [file] [log] [blame]
// run-pass
#![allow(dead_code)]
#![allow(non_camel_case_types)]
#![feature(box_syntax)]
fn test1() {
enum bar { u(Box<isize>), w(isize), }
let x = bar::u(box 10);
assert!(match x {
bar::u(a) => {
println!("{}", a);
*a
}
_ => { 66 }
} == 10);
}
pub fn main() {
test1();
}