2018-08-08 07:28:26 -05:00
|
|
|
error[E0040]: explicit use of destructor method
|
2023-03-29 15:18:20 -05:00
|
|
|
--> $DIR/explicit-call-to-supertrait-dtor.rs:22:14
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | self.drop();
|
2023-09-14 20:05:01 -05:00
|
|
|
| ^^^^ explicit destructor calls not allowed
|
|
|
|
|
|
|
|
|
help: consider using `drop` function
|
|
|
|
|
|
|
|
|
LL | drop(self);
|
|
|
|
| +++++ ~
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0040`.
|