12 lines
164 B
Rust
12 lines
164 B
Rust
#![feature(phase)]
|
|
|
|
#[phase(plugin)]
|
|
extern crate rust_clippy;
|
|
|
|
pub fn test(foo: Box<Vec<uint>>) {
|
|
println!("{}", foo)
|
|
}
|
|
|
|
fn main(){
|
|
test(box Vec::new());
|
|
} |