rust/examples/dlist.rs

14 lines
216 B
Rust
Raw Normal View History

2014-11-20 01:07:45 -06:00
#![feature(phase)]
#[phase(plugin)]
extern crate rust_clippy;
extern crate collections;
use collections::dlist::DList;
pub fn test(foo: DList<uint>) {
println!("{}", foo)
}
fn main(){
test(DList::new());
}