2018-08-08 07:28:26 -05:00
|
|
|
error[E0040]: explicit use of destructor method
|
2021-01-17 18:48:52 -06:00
|
|
|
--> $DIR/illegal-ufcs-drop.rs:9:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | Drop::drop(&mut Foo)
|
2020-05-20 09:48:21 -05:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| explicit destructor calls not allowed
|
2020-05-22 16:16:17 -05:00
|
|
|
| help: consider using `drop` function: `drop`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0040`.
|