mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
added test for issue #31
This commit is contained in:
parent
4ea4c292f2
commit
b24433f36d
1 changed files with 6 additions and 1 deletions
|
@ -7,6 +7,11 @@ pub fn test(foo: Box<Vec<bool>>) { //~ ERROR You seem to be trying to use Box<Ve
|
|||
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)));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue