2020-11-07 23:26:14 +00:00
|
|
|
#![warn(clippy::let_underscore_drop)]
|
2022-03-17 23:53:28 +00:00
|
|
|
#![allow(clippy::let_unit_value)]
|
2020-11-07 23:26:14 +00:00
|
|
|
|
|
|
|
struct Droppable;
|
|
|
|
|
|
|
|
impl Drop for Droppable {
|
|
|
|
fn drop(&mut self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let unit = ();
|
|
|
|
let boxed = Box::new(());
|
|
|
|
let droppable = Droppable;
|
|
|
|
let optional = Some(Droppable);
|
|
|
|
|
|
|
|
let _ = ();
|
|
|
|
let _ = Box::new(());
|
|
|
|
let _ = Droppable;
|
|
|
|
let _ = Some(Droppable);
|
2021-02-05 20:45:24 +00:00
|
|
|
|
|
|
|
// no lint for reference
|
|
|
|
let _ = droppable_ref();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[must_use]
|
|
|
|
fn droppable_ref() -> &'static mut Droppable {
|
|
|
|
unimplemented!()
|
2020-11-07 23:26:14 +00:00
|
|
|
}
|