// error-pattern:meep #![feature(box_syntax)] fn f(_a: isize, _b: isize, _c: Box) { panic!("moop"); } fn main() { f(1, panic!("meep"), box 42); }