Files
rust/tests/ui/empty_drop.stderr
Guillaume Gomez f666fd6417 Update UI tests
2025-02-15 13:38:16 +01:00

29 lines
597 B
Plaintext

error: empty drop implementation
--> tests/ui/empty_drop.rs:7:1
|
LL | / impl Drop for Foo {
LL | |
LL | | fn drop(&mut self) {}
LL | | }
| |_^
|
= note: `-D clippy::empty-drop` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::empty_drop)]`
= help: try removing this impl
error: empty drop implementation
--> tests/ui/empty_drop.rs:24:1
|
LL | / impl Drop for Baz {
LL | |
LL | | fn drop(&mut self) {
LL | | {}
LL | | }
LL | | }
| |_^
|
= help: try removing this impl
error: aborting due to 2 previous errors