mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
ac5e9c8d26
This fixes false positives and false negatives.
27 lines
480 B
Rust
27 lines
480 B
Rust
#![warn(clippy::let_underscore_drop)]
|
|
|
|
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);
|
|
|
|
// no lint for reference
|
|
let _ = droppable_ref();
|
|
}
|
|
|
|
#[must_use]
|
|
fn droppable_ref() -> &'static mut Droppable {
|
|
unimplemented!()
|
|
}
|