2023-09-27 16:25:31 -05:00
|
|
|
error: `~const` is not allowed here
|
|
|
|
--> $DIR/trait-where-clause.rs:8:24
|
|
|
|
|
|
|
|
|
LL | fn b() where Self: ~const Bar;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: this function is not `const`, so it cannot have `~const` trait bounds
|
|
|
|
--> $DIR/trait-where-clause.rs:8:8
|
|
|
|
|
|
|
|
|
LL | fn b() where Self: ~const Bar;
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: `~const` is not allowed here
|
|
|
|
--> $DIR/trait-where-clause.rs:10:13
|
|
|
|
|
|
|
|
|
LL | fn c<T: ~const Bar>();
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: this function is not `const`, so it cannot have `~const` trait bounds
|
|
|
|
--> $DIR/trait-where-clause.rs:10:8
|
|
|
|
|
|
|
|
|
LL | fn c<T: ~const Bar>();
|
|
|
|
| ^
|
|
|
|
|
2021-08-28 10:53:26 -05:00
|
|
|
error[E0277]: the trait bound `T: Bar` is not satisfied
|
2023-09-27 16:25:31 -05:00
|
|
|
--> $DIR/trait-where-clause.rs:16:5
|
2021-08-28 02:37:30 -05:00
|
|
|
|
|
|
|
|
LL | T::b();
|
2023-08-25 13:28:34 -05:00
|
|
|
| ^ the trait `Bar` is not implemented for `T`
|
2021-08-28 02:37:30 -05:00
|
|
|
|
|
2021-10-05 18:04:09 -05:00
|
|
|
note: required by a bound in `Foo::b`
|
2022-10-03 12:08:42 -05:00
|
|
|
--> $DIR/trait-where-clause.rs:8:24
|
2021-08-28 02:37:30 -05:00
|
|
|
|
|
|
|
|
LL | fn b() where Self: ~const Bar;
|
2021-10-05 18:04:09 -05:00
|
|
|
| ^^^^^^^^^^ required by this bound in `Foo::b`
|
2021-08-28 02:37:30 -05:00
|
|
|
help: consider further restricting this bound
|
|
|
|
|
|
2022-09-10 01:37:26 -05:00
|
|
|
LL | fn test1<T: Foo + Bar>() {
|
2021-08-28 02:37:30 -05:00
|
|
|
| +++++
|
|
|
|
|
2021-08-28 10:53:26 -05:00
|
|
|
error[E0277]: the trait bound `T: Bar` is not satisfied
|
2023-09-27 16:25:31 -05:00
|
|
|
--> $DIR/trait-where-clause.rs:18:12
|
2021-08-28 10:53:26 -05:00
|
|
|
|
|
|
|
|
LL | T::c::<T>();
|
2022-08-16 18:13:23 -05:00
|
|
|
| ^ the trait `Bar` is not implemented for `T`
|
2021-08-28 10:53:26 -05:00
|
|
|
|
|
2021-10-05 18:04:09 -05:00
|
|
|
note: required by a bound in `Foo::c`
|
2023-09-27 16:25:31 -05:00
|
|
|
--> $DIR/trait-where-clause.rs:10:13
|
2021-08-28 10:53:26 -05:00
|
|
|
|
|
|
|
|
LL | fn c<T: ~const Bar>();
|
2021-10-05 18:04:09 -05:00
|
|
|
| ^^^^^^^^^^ required by this bound in `Foo::c`
|
2021-08-28 10:53:26 -05:00
|
|
|
help: consider further restricting this bound
|
|
|
|
|
|
2022-09-10 01:37:26 -05:00
|
|
|
LL | fn test1<T: Foo + Bar>() {
|
2021-08-28 10:53:26 -05:00
|
|
|
| +++++
|
|
|
|
|
2023-09-27 16:25:31 -05:00
|
|
|
error: aborting due to 4 previous errors
|
2021-08-28 02:37:30 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|