2015-01-10 07:26:58 +01:00
|
|
|
#![feature(plugin)]
|
2014-11-19 09:57:34 +01:00
|
|
|
|
2015-03-02 11:43:44 +01:00
|
|
|
#![plugin(clippy)]
|
2015-04-13 19:58:18 +02:00
|
|
|
#![deny(clippy)]
|
2014-11-19 09:57:34 +01:00
|
|
|
|
2015-08-12 10:46:49 +02:00
|
|
|
pub fn test(foo: Box<Vec<bool>>) { //~ ERROR you seem to be trying to use `Box<Vec<T>>`
|
2015-01-10 07:26:58 +01:00
|
|
|
println!("{:?}", foo.get(0))
|
2014-11-19 09:57:34 +01:00
|
|
|
}
|
|
|
|
|
2015-05-08 06:01:41 +02:00
|
|
|
pub fn test2(foo: Box<Fn(Vec<u32>)>) { // pass if #31 is fixed
|
2015-08-11 20:22:20 +02:00
|
|
|
foo(vec![1, 2, 3])
|
2015-05-08 06:01:41 +02:00
|
|
|
}
|
|
|
|
|
2014-11-19 09:57:34 +01:00
|
|
|
fn main(){
|
2015-01-10 07:26:58 +01:00
|
|
|
test(Box::new(Vec::new()));
|
2015-05-08 06:01:41 +02:00
|
|
|
test2(Box::new(|v| println!("{:?}", v)));
|
|
|
|
}
|