blob: 159bf8f841aae6f40922cdff0ee43e4d1982ea61 [file]
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`.