2021-10-20 13:56:10 +00:00
|
|
|
error[E0659]: `empty_helper` is ambiguous
|
2020-11-14 11:47:14 +00:00
|
|
|
--> $DIR/helper-attr-blocked-by-import-ambig.rs:7:3
|
2019-05-21 22:09:58 +00:00
|
|
|
|
|
|
|
|
LL | #[empty_helper]
|
|
|
|
| ^^^^^^^^^^^^ ambiguous name
|
|
|
|
|
|
2021-10-20 13:56:10 +00:00
|
|
|
= note: ambiguous because of a name conflict with a derive helper attribute
|
2019-05-21 22:09:58 +00:00
|
|
|
note: `empty_helper` could refer to the derive helper attribute defined here
|
2020-11-14 11:47:14 +00:00
|
|
|
--> $DIR/helper-attr-blocked-by-import-ambig.rs:10:10
|
2019-05-21 22:09:58 +00:00
|
|
|
|
|
|
|
|
LL | #[derive(Empty)]
|
|
|
|
| ^^^^^
|
|
|
|
note: `empty_helper` could also refer to the attribute macro imported here
|
|
|
|
--> $DIR/helper-attr-blocked-by-import-ambig.rs:5:5
|
|
|
|
|
|
|
|
|
LL | use test_macros::empty_attr as empty_helper;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
= help: use `crate::empty_helper` to refer to this attribute macro unambiguously
|
|
|
|
|
2020-11-14 11:47:14 +00:00
|
|
|
warning: derive helper attribute is used before it is introduced
|
|
|
|
--> $DIR/helper-attr-blocked-by-import-ambig.rs:7:3
|
|
|
|
|
|
|
|
|
LL | #[empty_helper]
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
...
|
|
|
|
LL | #[derive(Empty)]
|
|
|
|
| ----- the attribute is introduced here
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #79202 <https://github.com/rust-lang/rust/issues/79202>
|
2022-09-18 15:55:36 +00:00
|
|
|
= note: `#[warn(legacy_derive_helpers)]` on by default
|
2020-11-14 11:47:14 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error; 1 warning emitted
|
2019-05-21 22:09:58 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0659`.
|