mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
15 lines
290 B
Rust
15 lines
290 B
Rust
#![feature(plugin, collections)]
|
|
|
|
#![plugin(clippy)]
|
|
#![deny(clippy)]
|
|
|
|
extern crate collections;
|
|
use collections::linked_list::LinkedList;
|
|
|
|
pub fn test(foo: LinkedList<u8>) { //~ ERROR I see you're using a LinkedList!
|
|
println!("{:?}", foo)
|
|
}
|
|
|
|
fn main(){
|
|
test(LinkedList::new());
|
|
}
|