2019-10-05 08:59:52 -05:00
|
|
|
error: cannot use a derive helper attribute through an import
|
2020-11-14 05:47:14 -06:00
|
|
|
--> $DIR/derive-helper-shadowing.rs:42:15
|
2019-10-05 08:59:52 -05:00
|
|
|
|
|
|
|
|
LL | #[renamed]
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
note: the derive helper attribute imported here
|
2020-11-14 05:47:14 -06:00
|
|
|
--> $DIR/derive-helper-shadowing.rs:41:17
|
2019-10-05 08:59:52 -05:00
|
|
|
|
|
|
|
|
LL | use empty_helper as renamed;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: cannot find attribute `empty_helper` in this scope
|
2020-11-14 05:47:14 -06:00
|
|
|
--> $DIR/derive-helper-shadowing.rs:38:22
|
2019-10-05 08:59:52 -05:00
|
|
|
|
|
|
|
|
LL | #[derive(GenHelperUse)]
|
|
|
|
| ^^^^^^^^^^^^
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the derive macro `GenHelperUse` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2023-06-16 14:44:06 -05:00
|
|
|
help: consider importing this attribute macro through its public re-export
|
2023-06-09 11:06:34 -05:00
|
|
|
|
|
|
|
|
LL + use empty_helper;
|
|
|
|
|
|
2019-10-05 08:59:52 -05:00
|
|
|
|
|
|
|
error: cannot find attribute `empty_helper` in this scope
|
|
|
|
--> $DIR/derive-helper-shadowing.rs:14:11
|
|
|
|
|
|
|
|
|
LL | #[empty_helper]
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
...
|
|
|
|
LL | gen_helper_use!();
|
2021-10-14 13:28:28 -05:00
|
|
|
| ----------------- in this macro invocation
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the macro `gen_helper_use` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2023-06-16 14:44:06 -05:00
|
|
|
help: consider importing this attribute macro through its public re-export
|
2023-06-09 11:06:34 -05:00
|
|
|
|
|
|
|
|
LL + use crate::empty_helper;
|
|
|
|
|
|
2019-10-05 08:59:52 -05:00
|
|
|
|
2021-10-20 08:56:10 -05:00
|
|
|
error[E0659]: `empty_helper` is ambiguous
|
2019-10-05 08:59:52 -05:00
|
|
|
--> $DIR/derive-helper-shadowing.rs:19:3
|
2018-09-12 21:11:13 -05:00
|
|
|
|
|
2019-05-21 17:09:58 -05:00
|
|
|
LL | #[empty_helper]
|
|
|
|
| ^^^^^^^^^^^^ ambiguous name
|
2018-09-12 21:11:13 -05:00
|
|
|
|
|
2021-10-20 08:56:10 -05:00
|
|
|
= note: ambiguous because of a name conflict with a derive helper attribute
|
2019-05-21 17:09:58 -05:00
|
|
|
note: `empty_helper` could refer to the derive helper attribute defined here
|
2020-11-14 05:47:14 -06:00
|
|
|
--> $DIR/derive-helper-shadowing.rs:22:10
|
2018-09-12 21:11:13 -05:00
|
|
|
|
|
2019-05-21 17:09:58 -05:00
|
|
|
LL | #[derive(Empty)]
|
|
|
|
| ^^^^^
|
|
|
|
note: `empty_helper` could also refer to the attribute macro imported here
|
2019-10-05 08:59:52 -05:00
|
|
|
--> $DIR/derive-helper-shadowing.rs:10:5
|
2018-09-23 18:26:26 -05:00
|
|
|
|
|
2019-05-21 17:09:58 -05:00
|
|
|
LL | use test_macros::empty_attr as empty_helper;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
= help: use `crate::empty_helper` to refer to this attribute macro unambiguously
|
2018-09-12 21:11:13 -05:00
|
|
|
|
2020-11-14 05:47:14 -06:00
|
|
|
warning: derive helper attribute is used before it is introduced
|
|
|
|
--> $DIR/derive-helper-shadowing.rs:19: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 10:55:36 -05:00
|
|
|
= note: `#[warn(legacy_derive_helpers)]` on by default
|
2020-11-14 05:47:14 -06:00
|
|
|
|
2023-05-29 15:36:06 -05:00
|
|
|
error: aborting due to 4 previous errors; 1 warning emitted
|
2018-09-12 21:11:13 -05:00
|
|
|
|
2019-07-11 17:00:20 -05:00
|
|
|
For more information about this error, try `rustc --explain E0659`.
|