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