rust-clippy/tests/compile-fail/dlist.rs

15 lines
262 B
Rust
Raw Normal View History

2015-04-13 17:58:18 +00:00
#![feature(plugin, collections)]
2014-11-20 07:07:45 +00:00
2015-03-02 10:43:44 +00:00
#![plugin(clippy)]
2015-04-13 17:58:18 +00:00
#![deny(clippy)]
2015-01-10 06:26:58 +00:00
2014-11-20 07:07:45 +00:00
extern crate collections;
2015-03-02 10:43:44 +00:00
use collections::linked_list::LinkedList;
2014-11-20 07:07:45 +00:00
2016-02-22 14:42:24 +00:00
pub fn test(_: LinkedList<u8>) { //~ ERROR I see you're using a LinkedList!
2014-11-20 07:07:45 +00:00
}
fn main(){
2015-03-02 10:43:44 +00:00
test(LinkedList::new());
}