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