rust/examples/dlist.rs
2015-01-10 11:56:58 +05:30

15 lines
208 B
Rust

#![feature(plugin)]
#[plugin]
extern crate clippy;
extern crate collections;
use collections::dlist::DList;
pub fn test(foo: DList<uint>) {
println!("{:?}", foo)
}
fn main(){
test(DList::new());
}