2018-07-28 10:34:52 -05:00
|
|
|
#![warn(clippy::all)]
|
2021-08-12 06:15:15 -05:00
|
|
|
#![allow(
|
|
|
|
clippy::boxed_local,
|
|
|
|
clippy::needless_pass_by_value,
|
|
|
|
clippy::blacklisted_name,
|
|
|
|
unused
|
|
|
|
)]
|
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>);
|
|
|
|
}
|
2021-08-12 06:15:15 -05:00
|
|
|
fn test(foo: Box<Vec<bool>>) {}
|
2014-11-19 02:57:34 -06:00
|
|
|
|
2021-08-12 06:15:15 -05:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-08-12 06:15:15 -05:00
|
|
|
fn test_local_not_linted() {
|
2017-06-11 11:30:48 -05:00
|
|
|
let _: Box<Vec<bool>>;
|
|
|
|
}
|
|
|
|
|
2021-08-12 06:15:15 -05:00
|
|
|
// All of these test should be allowed because they are part of the
|
|
|
|
// public api and `avoid_breaking_exported_api` is `false` by default.
|
|
|
|
pub fn pub_test(foo: Box<Vec<bool>>) {}
|
|
|
|
pub fn pub_test_ret() -> Box<Vec<bool>> {
|
|
|
|
Box::new(Vec::new())
|
2015-05-07 23:01:41 -05:00
|
|
|
}
|
2021-08-12 06:15:15 -05:00
|
|
|
|
|
|
|
fn main() {}
|