mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
bcd95aec1c
* start first sentence lowercased * use backticks to delimit code snippets * use "this is wrong. Consider doing X." consistently
17 lines
362 B
Rust
Executable file
17 lines
362 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)));
|
|
}
|