2022-10-03 12:08:42 -05:00
|
|
|
error[E0277]: the trait bound `S: ~const Foo` is not satisfied
|
|
|
|
--> $DIR/call-generic-method-nonconst.rs:23:34
|
2021-07-25 23:06:55 -05:00
|
|
|
|
|
|
|
|
LL | pub const EQ: bool = equals_self(&S);
|
2022-10-03 12:08:42 -05:00
|
|
|
| ----------- ^^ the trait `~const Foo` is not implemented for `S`
|
2021-09-07 06:30:53 -05:00
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
2021-07-25 23:06:55 -05:00
|
|
|
|
|
2022-10-03 12:08:42 -05:00
|
|
|
note: the trait `Foo` is implemented for `S`, but that implementation is not `const`
|
|
|
|
--> $DIR/call-generic-method-nonconst.rs:23:34
|
2022-01-26 21:09:44 -06:00
|
|
|
|
|
|
|
|
LL | pub const EQ: bool = equals_self(&S);
|
|
|
|
| ^^
|
2021-07-31 11:26:55 -05:00
|
|
|
note: required by a bound in `equals_self`
|
2022-10-03 12:08:42 -05:00
|
|
|
--> $DIR/call-generic-method-nonconst.rs:16:25
|
2022-03-31 09:58:45 -05:00
|
|
|
|
|
2022-10-03 12:08:42 -05:00
|
|
|
LL | const fn equals_self<T: ~const Foo>(t: &T) -> bool {
|
|
|
|
| ^^^^^^^^^^ required by this bound in `equals_self`
|
2021-07-25 23:06:55 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|