2021-12-24 14:50:44 +00:00
|
|
|
error[E0277]: the trait bound `UnconstDrop: ~const Drop` is not satisfied
|
2022-01-17 05:50:40 +00:00
|
|
|
--> $DIR/const-block-const-bound.rs:18:11
|
2022-01-14 11:39:29 +00:00
|
|
|
|
|
|
|
|
LL | f(UnconstDrop);
|
2021-12-24 14:50:44 +00:00
|
|
|
| - ^^^^^^^^^^^ expected an implementor of trait `~const Drop`
|
2022-01-14 11:39:29 +00:00
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
|
|
|
|
|
|
|
|
note: required by a bound in `f`
|
|
|
|
--> $DIR/const-block-const-bound.rs:4:15
|
|
|
|
|
|
|
|
|
LL | const fn f<T: ~const Drop>(x: T) {}
|
|
|
|
| ^^^^^^^^^^^ required by this bound in `f`
|
2021-12-24 14:50:44 +00:00
|
|
|
help: consider borrowing here
|
2022-01-14 11:39:29 +00:00
|
|
|
|
|
2021-12-24 14:50:44 +00:00
|
|
|
LL | f(&UnconstDrop);
|
|
|
|
| +
|
|
|
|
LL | f(&mut UnconstDrop);
|
|
|
|
| ++++
|
2022-01-14 11:39:29 +00:00
|
|
|
|
2021-12-24 14:50:44 +00:00
|
|
|
error[E0277]: the trait bound `NonDrop: ~const Drop` is not satisfied
|
2022-01-17 05:50:40 +00:00
|
|
|
--> $DIR/const-block-const-bound.rs:20:11
|
|
|
|
|
|
|
|
|
LL | f(NonDrop);
|
2021-12-24 14:50:44 +00:00
|
|
|
| - ^^^^^^^ expected an implementor of trait `~const Drop`
|
2022-01-17 05:50:40 +00:00
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
|
|
|
|
|
|
|
|
note: required by a bound in `f`
|
|
|
|
--> $DIR/const-block-const-bound.rs:4:15
|
|
|
|
|
|
|
|
|
LL | const fn f<T: ~const Drop>(x: T) {}
|
|
|
|
| ^^^^^^^^^^^ required by this bound in `f`
|
2021-12-24 14:50:44 +00:00
|
|
|
help: consider borrowing here
|
|
|
|
|
|
|
|
|
LL | f(&NonDrop);
|
|
|
|
| +
|
|
|
|
LL | f(&mut NonDrop);
|
|
|
|
| ++++
|
2022-01-17 05:50:40 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2022-01-14 11:39:29 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|