2017-09-18 10:47:33 +00:00
|
|
|
|
|
|
|
|
2015-12-28 14:12:57 +00:00
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
#![warn(clippy)]
|
2017-02-20 03:50:31 +00:00
|
|
|
#![allow(boxed_local, needless_pass_by_value)]
|
2016-02-22 14:42:24 +00:00
|
|
|
#![allow(blacklisted_name)]
|
2014-11-19 08:57:34 +00:00
|
|
|
|
2016-01-02 16:19:53 +00:00
|
|
|
macro_rules! boxit {
|
|
|
|
($init:expr, $x:ty) => {
|
|
|
|
let _: Box<$x> = Box::new($init);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_macro() {
|
|
|
|
boxit!(Vec::new(), Vec<u8>);
|
|
|
|
}
|
2017-02-08 13:58:07 +00:00
|
|
|
pub fn test(foo: Box<Vec<bool>>) {
|
2015-01-10 06:26:58 +00:00
|
|
|
println!("{:?}", foo.get(0))
|
2014-11-19 08:57:34 +00:00
|
|
|
}
|
|
|
|
|
2015-05-08 04:01:41 +00:00
|
|
|
pub fn test2(foo: Box<Fn(Vec<u32>)>) { // pass if #31 is fixed
|
2015-08-11 18:22:20 +00:00
|
|
|
foo(vec![1, 2, 3])
|
2015-05-08 04:01:41 +00:00
|
|
|
}
|
|
|
|
|
2017-06-11 16:30:48 +00:00
|
|
|
pub fn test_local_not_linted() {
|
|
|
|
let _: Box<Vec<bool>>;
|
|
|
|
}
|
|
|
|
|
2014-11-19 08:57:34 +00:00
|
|
|
fn main(){
|
2015-01-10 06:26:58 +00:00
|
|
|
test(Box::new(Vec::new()));
|
2015-05-08 04:01:41 +00:00
|
|
|
test2(Box::new(|v| println!("{:?}", v)));
|
2016-01-02 16:19:53 +00:00
|
|
|
test_macro();
|
2017-06-11 16:30:48 +00:00
|
|
|
test_local_not_linted();
|
2015-05-08 04:01:41 +00:00
|
|
|
}
|