2022-03-21 00:52:41 -05:00
|
|
|
error[E0277]: can't drop `UnconstDrop` in const contexts
|
2023-04-26 13:22:32 -05:00
|
|
|
--> $DIR/const-block-const-bound.rs:16:9
|
2022-01-14 05:39:29 -06:00
|
|
|
|
|
|
|
|
LL | f(UnconstDrop);
|
2023-03-24 04:17:51 -05:00
|
|
|
| ^^^^^^^^^^^^^^ the trait `~const Destruct` is not implemented for `UnconstDrop`
|
2022-01-14 05:39:29 -06:00
|
|
|
|
|
2022-03-21 00:52:41 -05:00
|
|
|
= note: the trait bound `UnconstDrop: ~const Destruct` is not satisfied
|
2021-12-24 08:50:44 -06:00
|
|
|
help: consider borrowing here
|
2022-01-14 05:39:29 -06:00
|
|
|
|
|
2023-03-24 04:17:51 -05:00
|
|
|
LL | &f(UnconstDrop);
|
|
|
|
| +
|
|
|
|
LL | &mut f(UnconstDrop);
|
|
|
|
| ++++
|
2022-01-14 05:39:29 -06:00
|
|
|
|
2023-04-26 13:22:32 -05:00
|
|
|
error: aborting due to previous error
|
2022-01-14 05:39:29 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|