2018-08-08 07:28:26 -05:00
|
|
|
error[E0040]: explicit use of destructor method
|
2023-03-29 15:18:20 -05:00
|
|
|
--> $DIR/illegal-ufcs-drop.rs:12: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
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0040`.
|