#![feature(plugin)] #![plugin(clippy)] #![deny(clippy)] pub fn test(foo: Box>) { //~ ERROR You seem to be trying to use Box> println!("{:?}", foo.get(0)) } fn main(){ test(Box::new(Vec::new())); }