diff options
Diffstat (limited to 'src/tools/clippy/tests/ui/box_collection.rs')
-rw-r--r-- | src/tools/clippy/tests/ui/box_collection.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/clippy/tests/ui/box_collection.rs b/src/tools/clippy/tests/ui/box_collection.rs index 0780c8f05..4c9947b9a 100644 --- a/src/tools/clippy/tests/ui/box_collection.rs +++ b/src/tools/clippy/tests/ui/box_collection.rs @@ -15,7 +15,7 @@ macro_rules! boxit { } fn test_macro() { - boxit!(Vec::new(), Vec<u8>); + boxit!(vec![1], Vec<u8>); } fn test1(foo: Box<Vec<bool>>) {} @@ -50,7 +50,7 @@ fn test_local_not_linted() { pub fn pub_test(foo: Box<Vec<bool>>) {} pub fn pub_test_ret() -> Box<Vec<bool>> { - Box::new(Vec::new()) + Box::default() } fn main() {} |