]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/box_collection.rs
Move MSRV tests into the lint specific test files
[rust.git] / tests / ui / box_collection.rs
index 1a74cdb3ff65926ab94e679bdcbea64d4e51db0f..4c9947b9ae724d0bcd9b9fe6afefc7b83dc65734 100644 (file)
@@ -2,7 +2,7 @@
 #![allow(
     clippy::boxed_local,
     clippy::needless_pass_by_value,
-    clippy::blacklisted_name,
+    clippy::disallowed_names,
     unused
 )]
 
@@ -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() {}