]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2632-const-trait-impl/call-generic-method-nonconst.stderr
Improve selection errors for `~const` trait bounds
[rust.git] / src / test / ui / rfc-2632-const-trait-impl / call-generic-method-nonconst.stderr
1 error[E0277]: the trait bound `S: ~const PartialEq` is not satisfied
2   --> $DIR/call-generic-method-nonconst.rs:19:34
3    |
4 LL | pub const EQ: bool = equals_self(&S);
5    |                      ----------- ^^ no implementation for `S == S`
6    |                      |
7    |                      required by a bound introduced by this call
8    |
9    = help: the trait `~const PartialEq` is not implemented for `S`
10 note: required by a bound in `equals_self`
11   --> $DIR/call-generic-method-nonconst.rs:12:25
12    |
13 LL | const fn equals_self<T: ~const PartialEq>(t: &T) -> bool {
14    |                         ^^^^^^^^^^^^^^^^ required by this bound in `equals_self`
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0277`.