Files
rust/examples/box_vec.rs

12 lines
168 B
Rust
Raw Normal View History

2015-01-10 11:56:58 +05:30
#![feature(plugin)]
2014-11-19 14:27:34 +05:30
2015-01-10 11:56:58 +05:30
#[plugin]
2014-12-26 05:30:03 +05:30
extern crate clippy;
2014-11-19 14:27:34 +05:30
2015-01-10 11:56:58 +05:30
pub fn test(foo: Box<Vec<bool>>) {
println!("{:?}", foo.get(0))
2014-11-19 14:27:34 +05:30
}
fn main(){
2015-01-10 11:56:58 +05:30
test(Box::new(Vec::new()));
2014-11-19 14:27:34 +05:30
}