mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-18 03:25:55 +00:00
e318328d63
* 4-space indentation * no trailing whitespace * no tabs
18 lines
360 B
Rust
Executable File
18 lines
360 B
Rust
Executable File
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
#![deny(clippy)]
|
|
|
|
pub fn test(foo: Box<Vec<bool>>) { //~ ERROR You seem to be trying to use Box<Vec<T>>
|
|
println!("{:?}", foo.get(0))
|
|
}
|
|
|
|
pub fn test2(foo: Box<Fn(Vec<u32>)>) { // pass if #31 is fixed
|
|
foo(vec![1, 2, 3])
|
|
}
|
|
|
|
fn main(){
|
|
test(Box::new(Vec::new()));
|
|
test2(Box::new(|v| println!("{:?}", v)));
|
|
}
|