1
Fork 0
rust/tests/ui/rfcs/rfc-2632-const-trait-impl/const-impl-trait.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
978 B
Text
Raw Normal View History

error[E0277]: can't compare `()` with `()`
--> $DIR/const-impl-trait.rs:37:17
2023-04-16 11:12:37 +00:00
|
LL | assert!(cmp(&()));
| --- ^^^ no implementation for `() == ()`
| |
| required by a bound introduced by this call
2023-04-16 11:12:37 +00:00
|
= help: the trait `const PartialEq` is not implemented for `()`
= help: the trait `PartialEq` is implemented for `()`
note: required by a bound in `cmp`
--> $DIR/const-impl-trait.rs:14:23
2023-04-16 11:12:37 +00:00
|
LL | const fn cmp(a: &impl ~const PartialEq) -> bool {
| ^^^^^^^^^^^^^^^^ required by this bound in `cmp`
2023-04-16 11:12:37 +00:00
error[E0369]: binary operation `==` cannot be applied to type `&impl ~const PartialEq`
--> $DIR/const-impl-trait.rs:15:7
2023-12-10 10:42:34 +00:00
|
LL | a == a
| - ^^ - &impl ~const PartialEq
| |
| &impl ~const PartialEq
2023-12-10 10:42:34 +00:00
error: aborting due to 2 previous errors
2023-04-16 11:12:37 +00:00
Some errors have detailed explanations: E0277, E0369.
For more information about an error, try `rustc --explain E0277`.