mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
20 lines
338 B
Rust
20 lines
338 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);
|
||
|
}
|