rust/tests/ui/box_collection.rs

45 lines
853 B
Rust
Raw Normal View History

2018-07-28 17:34:52 +02:00
#![warn(clippy::all)]
#![allow(
clippy::boxed_local,
clippy::needless_pass_by_value,
clippy::blacklisted_name,
unused
)]
2014-11-19 09:57:34 +01:00
2021-09-18 00:56:14 +02:00
use std::collections::HashMap;
macro_rules! boxit {
($init:expr, $x:ty) => {
let _: Box<$x> = Box::new($init);
2018-12-09 23:26:16 +01:00
};
}
fn test_macro() {
boxit!(Vec::new(), Vec<u8>);
}
2021-09-18 00:56:14 +02:00
fn test(foo: Box<Vec<bool>>) {}
2014-11-19 09:57:34 +01:00
fn test2(foo: Box<dyn Fn(Vec<u32>)>) {
2018-12-09 23:26:16 +01:00
// pass if #31 is fixed
foo(vec![1, 2, 3])
2015-05-08 06:01:41 +02:00
}
2021-09-18 00:56:14 +02:00
fn test3(foo: Box<String>) {}
fn test4(foo: Box<HashMap<String, String>>) {}
fn test_local_not_linted() {
let _: Box<Vec<bool>>;
}
// 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-18 00:56:14 +02:00
pub fn pub_test_ret() -> Box<Vec<bool>> {
Box::new(Vec::new())
2015-05-08 06:01:41 +02:00
}
fn main() {}