os-rust/tests/ui/derives/deriving-meta-unknown-trait.stderr

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

23 lines
722 B
Text
Raw Permalink Normal View History

2018-08-08 14:28:26 +02:00
error: cannot find derive macro `Eqr` in this scope
--> $DIR/deriving-meta-unknown-trait.rs:1:10
2018-08-08 14:28:26 +02:00
|
LL | #[derive(Eqr)]
| ^^^ help: a derive macro with a similar name exists: `Eq`
--> $SRC_DIR/core/src/cmp.rs:LL:COL
|
= note: similarly named derive macro `Eq` defined here
2018-08-08 14:28:26 +02:00
2020-01-08 20:02:10 +03:00
error: cannot find derive macro `Eqr` in this scope
--> $DIR/deriving-meta-unknown-trait.rs:1:10
2020-01-08 20:02:10 +03:00
|
LL | #[derive(Eqr)]
| ^^^ help: a derive macro with a similar name exists: `Eq`
--> $SRC_DIR/core/src/cmp.rs:LL:COL
|
= note: similarly named derive macro `Eq` defined here
2023-10-04 18:34:50 +00:00
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
2020-01-08 20:02:10 +03:00
error: aborting due to 2 previous errors
2018-08-08 14:28:26 +02:00