rust/tests/compile-fail/dlist.rs

15 lines
289 B
Rust
Raw Normal View History

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