Files
rust/tests/ui/drop/explicit-drop-call-error.stderr
T
Usman Akinyemi e5b42e5084 Fix E0040 suggestion for explicit Drop::drop UFCS calls
`Drop::drop(&mut f)` now correctly suggests `drop(f)` instead of
the bare `drop` with no argument.

Signed-off-by: Usman Akinyemi <usmanakinyemi202@gmail.com>
2026-05-05 01:09:33 +05:30

16 lines
396 B
Plaintext

error[E0040]: explicit use of destructor method
--> $DIR/explicit-drop-call-error.rs:14:5
|
LL | Drop::drop(&mut Foo)
| ^^^^^^^^^^ explicit destructor calls not allowed
|
help: consider using `drop` function
|
LL - Drop::drop(&mut Foo)
LL + drop(Foo)
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0040`.