mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-22 12:43:18 +00:00
14 lines
No EOL
216 B
Rust
14 lines
No EOL
216 B
Rust
#![feature(phase)]
|
|
|
|
#[phase(plugin)]
|
|
extern crate rust_clippy;
|
|
extern crate collections;
|
|
use collections::dlist::DList;
|
|
|
|
pub fn test(foo: DList<uint>) {
|
|
println!("{}", foo)
|
|
}
|
|
|
|
fn main(){
|
|
test(DList::new());
|
|
} |