rust/tests/compile-fail/dlist.rs
2016-03-12 14:51:45 +01:00

14 lines
262 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());
}