rust-clippy/examples/box_vec.rs

12 lines
168 B
Rust
Raw Normal View History

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