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