rust/tests/ui/issues/issue-46101.stderr

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

18 lines
618 B
Plaintext
Raw Normal View History

2019-02-25 23:55:25 +00:00
error[E0433]: failed to resolve: partially resolved path in a derive macro
2022-01-19 15:24:49 +00:00
--> $DIR/issue-46101.rs:2:10
2019-02-25 23:55:25 +00:00
|
2019-03-12 19:06:13 +00:00
LL | #[derive(Foo::Anything)]
2019-02-25 23:55:25 +00:00
| ^^^^^^^^^^^^^ partially resolved path in a derive macro
2020-01-08 17:02:10 +00:00
error[E0433]: failed to resolve: partially resolved path in a derive macro
2022-01-19 15:24:49 +00:00
--> $DIR/issue-46101.rs:2:10
2020-01-08 17:02:10 +00:00
|
LL | #[derive(Foo::Anything)]
| ^^^^^^^^^^^^^ partially resolved path in a derive macro
2023-10-04 18:34:50 +00:00
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
2020-01-08 17:02:10 +00:00
error: aborting due to 2 previous errors
2019-02-25 23:55:25 +00:00
For more information about this error, try `rustc --explain E0433`.