]> git.proxmox.com Git - rustc.git/blob - src/test/ui/rfc-2632-const-trait-impl/call-generic-method-nonconst.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / rfc-2632-const-trait-impl / call-generic-method-nonconst.stderr
1 error[E0277]: can't compare `S` with `S`
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 = help: the trait `PartialEq` is not implemented for `S`
8 note: required by a bound in `equals_self`
9 --> $DIR/call-generic-method-nonconst.rs:12:25
10 |
11 LL | const fn equals_self<T: ~const PartialEq>(t: &T) -> bool {
12 | ^^^^^^^^^^^^^^^^ required by this bound in `equals_self`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0277`.