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.

32 lines
1.1 KiB
Text
Raw Normal View History

error[E0277]: can't compare `()` with `()`
--> $DIR/const-impl-trait.rs:35: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:12: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[E0277]: can't compare `&impl ~const PartialEq` with `&impl ~const PartialEq`
--> $DIR/const-impl-trait.rs:13:7
2023-12-10 10:42:34 +00:00
|
LL | a == a
| ^^ no implementation for `&impl ~const PartialEq == &impl ~const PartialEq`
2023-12-10 10:42:34 +00:00
|
= help: the trait `~const PartialEq<&impl ~const PartialEq>` is not implemented for `&impl ~const PartialEq`
help: consider dereferencing both sides of the expression
2023-12-10 10:42:34 +00:00
|
LL | *a == *a
| + +
2023-12-10 10:42:34 +00:00
error: aborting due to 2 previous errors
2023-04-16 11:12:37 +00:00
2023-12-06 02:42:59 +00:00
For more information about this error, try `rustc --explain E0277`.