#![feature(box_syntax)] #![feature(lint_reasons)] #![allow( clippy::borrowed_box, clippy::needless_pass_by_value, clippy::unused_unit, clippy::redundant_clone, clippy::match_single_binding )] #![warn(clippy::boxed_local)] #[derive(Clone)] struct A; impl A { fn foo(&self) {} } trait Z { fn bar(&self); } impl Z for A { fn bar(&self) { //nothing } } fn main() {} fn ok_box_trait(boxed_trait: &Box) { let boxed_local = boxed_trait; // done } fn warn_call() { let x = box A; x.foo(); } fn warn_arg(x: Box) { x.foo(); } fn nowarn_closure_arg() { let x = Some(box A); x.map_or((), |x| take_ref(&x)); } fn warn_rename_call() { let x = box A; let y = x; y.foo(); // via autoderef } fn warn_notuse() { let bz = box A; } fn warn_pass() { let bz = box A; take_ref(&bz); // via deref coercion } fn nowarn_return() -> Box { box A // moved out, "escapes" } fn nowarn_move() { let bx = box A; drop(bx) // moved in, "escapes" } fn nowarn_call() { let bx = box A; bx.clone(); // method only available to Box, not via autoderef } fn nowarn_pass() { let bx = box A; take_box(&bx); // fn needs &Box } fn take_box(x: &Box) {} fn take_ref(x: &A) {} fn nowarn_ref_take() { // false positive, should actually warn let x = box A; let y = &x; take_box(y); } fn nowarn_match() { let x = box A; // moved into a match match x { y => drop(y), } } fn warn_match() { let x = box A; match &x { // not moved y => (), } } fn nowarn_large_array() { // should not warn, is large array // and should not be on stack let x = box [1; 10000]; match &x { // not moved y => (), } } /// ICE regression test pub trait Foo { type Item; } impl<'a> Foo for &'a () { type Item = (); } pub struct PeekableSeekable { _peeked: I::Item, } pub fn new(_needs_name: Box>) -> () {} /// Regression for #916, #1123 /// /// This shouldn't warn for `boxed_local`as the implementation of a trait /// can't change much about the trait definition. trait BoxedAction { fn do_sth(self: Box); } impl BoxedAction for u64 { fn do_sth(self: Box) { println!("{}", *self) } } /// Regression for #1478 /// /// This shouldn't warn for `boxed_local`as self itself is a box type. trait MyTrait { fn do_sth(self); } impl MyTrait for Box { fn do_sth(self) {} } // Issue #3739 - capture in closures mod issue_3739 { use super::A; fn consume(_: T) {} fn borrow(_: &T) {} fn closure_consume(x: Box) { let _ = move || { consume(x); }; } fn closure_borrow(x: Box) { let _ = || { borrow(&x); }; } } /// Issue #5542 /// /// This shouldn't warn for `boxed_local` as it is intended to called from non-Rust code. pub extern "C" fn do_not_warn_me(_c_pointer: Box) -> () {} #[rustfmt::skip] // Forces rustfmt to not add ABI pub extern fn do_not_warn_me_no_abi(_c_pointer: Box) -> () {} // Issue #4804 - default implementation in trait mod issue4804 { trait DefaultTraitImplTest { // don't warn on `self` fn default_impl(self: Box) -> u32 { 5 } // warn on `x: Box` fn default_impl_x(self: Box, x: Box) -> u32 { 4 } } trait WarnTrait { // warn on `x: Box` fn foo(x: Box) {} } } fn check_expect(#[expect(clippy::boxed_local)] x: Box) { x.foo(); }