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