mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-02 06:28:20 +03:00
e5b42e5084
`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>
16 lines
396 B
Plaintext
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`.
|