mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-24 20:13:24 +00:00
14 lines
305 B
Rust
14 lines
305 B
Rust
#![feature(plugin, collections)]
|
|
|
|
#![plugin(clippy)]
|
|
#![deny(clippy)]
|
|
|
|
extern crate collections;
|
|
use collections::linked_list::LinkedList;
|
|
|
|
pub fn test(_: LinkedList<u8>) { //~ ERROR I see you're using a LinkedList!
|
|
}
|
|
|
|
fn main(){
|
|
test(LinkedList::new()); //~ ERROR I see you're using a LinkedList!
|
|
}
|