rust/tests/ui/rfcs/rfc-2632-const-trait-impl/trait-where-clause-const.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.2 KiB
Plaintext
Raw Normal View History

error[E0277]: the trait bound `T: ~const Bar` is not satisfied
2023-07-29 03:20:25 -05:00
--> $DIR/trait-where-clause-const.rs:21:5
|
LL | T::b();
2023-08-25 13:28:34 -05:00
| ^ the trait `Bar` is not implemented for `T`
2023-07-29 03:20:25 -05:00
|
note: required by a bound in `Foo::b`
--> $DIR/trait-where-clause-const.rs:15:24
2023-07-29 03:20:25 -05:00
|
LL | fn b() where Self: ~const Bar;
| ^^^^^^^^^^ required by this bound in `Foo::b`
help: consider further restricting this bound
2023-07-29 03:20:25 -05:00
|
LL | const fn test1<T: ~const Foo + Bar + Bar>() {
| +++++
2023-07-29 03:20:25 -05:00
error[E0277]: the trait bound `T: ~const Bar` is not satisfied
--> $DIR/trait-where-clause-const.rs:23:12
2023-07-29 03:20:25 -05:00
|
LL | T::c::<T>();
| ^ the trait `Bar` is not implemented for `T`
2023-07-29 03:20:25 -05:00
|
note: required by a bound in `Foo::c`
--> $DIR/trait-where-clause-const.rs:16:13
2023-07-29 03:20:25 -05:00
|
LL | fn c<T: ~const Bar>();
| ^^^^^^^^^^ required by this bound in `Foo::c`
help: consider further restricting this bound
2023-07-29 03:20:25 -05:00
|
LL | const fn test1<T: ~const Foo + Bar + Bar>() {
| +++++
2023-07-29 03:20:25 -05:00
error: aborting due to 2 previous errors
2023-07-29 03:20:25 -05:00
For more information about this error, try `rustc --explain E0277`.