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