mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-17 18:28:40 +00:00
707e95f2e5
This gets rid of the match_ty_unwrap function.
15 lines
290 B
Rust
Executable file
15 lines
290 B
Rust
Executable file
#![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());
|
|
}
|