mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
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());
|
||
|
}
|