// pp-exact trait Tr { fn dummy(&self) {} } impl Tr for isize {} fn foo<'a>(x: Box) -> Box { x } fn main() { let x: Box; Box::new(1isize) as Box; }