rust/tests/compile-fail/box_vec.rs

29 lines
557 B
Rust
Raw Normal View History

2015-01-10 11:56:58 +05:30
#![feature(plugin)]
2015-03-02 16:13:44 +05:30
#![plugin(clippy)]
2015-12-28 23:12:57 +09:00
2015-04-13 23:28:18 +05:30
#![deny(clippy)]
2015-12-28 23:12:57 +09:00
#![allow(boxed_local)]
2014-11-19 14:27:34 +05:30
macro_rules! boxit {
($init:expr, $x:ty) => {
let _: Box<$x> = Box::new($init);
}
}
fn test_macro() {
boxit!(Vec::new(), Vec<u8>);
}
pub fn test(foo: Box<Vec<bool>>) { //~ ERROR you seem to be trying to use `Box<Vec<T>>`
2015-01-10 11:56:58 +05:30
println!("{:?}", foo.get(0))
2014-11-19 14:27:34 +05:30
}
2015-05-08 06:01:41 +02:00
pub fn test2(foo: Box<Fn(Vec<u32>)>) { // pass if #31 is fixed
foo(vec![1, 2, 3])
2015-05-08 06:01:41 +02:00
}
2014-11-19 14:27:34 +05:30
fn main(){
2015-01-10 11:56:58 +05:30
test(Box::new(Vec::new()));
2015-05-08 06:01:41 +02:00
test2(Box::new(|v| println!("{:?}", v)));
test_macro();
2015-05-08 06:01:41 +02:00
}