#![feature(phase)] #[phase(plugin)] extern crate rust_clippy; pub fn test(foo: Box>) { println!("{}", foo) } fn main(){ test(box Vec::new()); }