2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::all)]
|
2022-06-08 19:08:37 +00:00
|
|
|
#![allow(
|
|
|
|
clippy::boxed_local,
|
|
|
|
clippy::needless_pass_by_value,
|
|
|
|
clippy::disallowed_names,
|
|
|
|
unused
|
|
|
|
)]
|
2014-11-19 08:57:34 +00:00
|
|
|
|
2022-07-13 15:02:09 +00:00
|
|
|
use std::collections::{BTreeMap, BTreeSet, BinaryHeap, HashMap, HashSet, LinkedList, VecDeque};
|
2021-09-17 22:56:14 +00:00
|
|
|
|
2016-01-02 16:19:53 +00:00
|
|
|
macro_rules! boxit {
|
|
|
|
($init:expr, $x:ty) => {
|
|
|
|
let _: Box<$x> = Box::new($init);
|
2018-12-09 22:26:16 +00:00
|
|
|
};
|
2016-01-02 16:19:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test_macro() {
|
2022-09-21 21:43:49 +00:00
|
|
|
boxit!(vec![1], Vec<u8>);
|
2016-01-02 16:19:53 +00:00
|
|
|
}
|
2021-09-17 22:56:14 +00:00
|
|
|
|
2022-07-13 15:02:09 +00:00
|
|
|
fn test1(foo: Box<Vec<bool>>) {}
|
2014-11-19 08:57:34 +00:00
|
|
|
|
2021-08-12 11:15:15 +00:00
|
|
|
fn test2(foo: Box<dyn Fn(Vec<u32>)>) {
|
2018-12-09 22:26:16 +00:00
|
|
|
// 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
|
|
|
}
|
|
|
|
|
2021-09-17 22:56:14 +00:00
|
|
|
fn test3(foo: Box<String>) {}
|
|
|
|
|
|
|
|
fn test4(foo: Box<HashMap<String, String>>) {}
|
|
|
|
|
2022-07-13 15:02:09 +00:00
|
|
|
fn test5(foo: Box<HashSet<i64>>) {}
|
|
|
|
|
|
|
|
fn test6(foo: Box<VecDeque<i32>>) {}
|
|
|
|
|
|
|
|
fn test7(foo: Box<LinkedList<i16>>) {}
|
|
|
|
|
|
|
|
fn test8(foo: Box<BTreeMap<i8, String>>) {}
|
|
|
|
|
|
|
|
fn test9(foo: Box<BTreeSet<u64>>) {}
|
|
|
|
|
|
|
|
fn test10(foo: Box<BinaryHeap<u32>>) {}
|
|
|
|
|
2021-08-12 11:15:15 +00:00
|
|
|
fn test_local_not_linted() {
|
2017-06-11 16:30:48 +00:00
|
|
|
let _: Box<Vec<bool>>;
|
|
|
|
}
|
|
|
|
|
2021-08-12 11:15:15 +00: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>>) {}
|
2021-09-17 22:56:14 +00:00
|
|
|
|
2021-08-12 11:15:15 +00:00
|
|
|
pub fn pub_test_ret() -> Box<Vec<bool>> {
|
2022-09-21 21:43:49 +00:00
|
|
|
Box::default()
|
2015-05-08 04:01:41 +00:00
|
|
|
}
|
2021-08-12 11:15:15 +00:00
|
|
|
|
|
|
|
fn main() {}
|