rust-clippy/tests/compile-fail/box_vec.rs

12 lines
224 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-03-02 10:43:44 +00:00
#![plugin(clippy)]
2015-04-13 17:58:18 +00:00
#![deny(clippy)]
2014-11-19 08:57:34 +00:00
2015-04-13 17:58:18 +00:00
pub fn test(foo: Box<Vec<bool>>) { //~ ERROR You seem to be trying to use Box<Vec<T>>
2015-01-10 06:26:58 +00:00
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
}