blob: 1747bf029aa334672d86863ea962e0cf845b9991 [file] [log] [blame]
// run-pass
// pretty-expanded FIXME #23616
#![allow(non_camel_case_types)]
#![feature(box_syntax)]
enum t { foo(Box<isize>), }
pub fn main() {
let tt = t::foo(box 10);
match tt { t::foo(_z) => { } }
}