2024-05-13 12:58:40 -05:00
warning: non-local `macro_rules!` definition, `#[macro_export]` macro should be written at top level module
2024-06-29 05:10:33 -05:00
--> $DIR/macro_rules.rs:10:5
2024-04-08 12:12:47 -05:00
|
LL | macro_rules! m0 { () => { } };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: remove the `#[macro_export]` or move this `macro_rules!` outside the of the current constant `B`
= note: a `macro_rules!` definition is non-local if it is nested inside an item and has a `#[macro_export]` attribute
= note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue <https://github.com/rust-lang/rust/issues/120363>
2024-06-29 05:10:33 -05:00
= note: `#[warn(non_local_definitions)]` on by default
2024-04-08 12:12:47 -05:00
2024-05-13 12:58:40 -05:00
warning: non-local `macro_rules!` definition, `#[macro_export]` macro should be written at top level module
2024-06-29 05:10:33 -05:00
--> $DIR/macro_rules.rs:16:1
2024-04-08 12:12:47 -05:00
|
LL | non_local_macro::non_local_macro_rules!(my_macro);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: remove the `#[macro_export]` or move this `macro_rules!` outside the of the current constant `_MACRO_EXPORT`
= note: a `macro_rules!` definition is non-local if it is nested inside an item and has a `#[macro_export]` attribute
= note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue <https://github.com/rust-lang/rust/issues/120363>
= note: the macro `non_local_macro::non_local_macro_rules` may come from an old version of the `non_local_macro` crate, try updating your dependency with `cargo update -p non_local_macro`
= note: this warning originates in the macro `non_local_macro::non_local_macro_rules` (in Nightly builds, run with -Z macro-backtrace for more info)
2024-05-13 12:58:40 -05:00
warning: non-local `macro_rules!` definition, `#[macro_export]` macro should be written at top level module
2024-06-29 05:10:33 -05:00
--> $DIR/macro_rules.rs:21:5
2024-04-08 12:12:47 -05:00
|
LL | macro_rules! m { () => { } };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: remove the `#[macro_export]` or move this `macro_rules!` outside the of the current function `main`
= note: a `macro_rules!` definition is non-local if it is nested inside an item and has a `#[macro_export]` attribute
= note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue <https://github.com/rust-lang/rust/issues/120363>
2024-05-13 12:58:40 -05:00
warning: non-local `macro_rules!` definition, `#[macro_export]` macro should be written at top level module
2024-06-29 05:10:33 -05:00
--> $DIR/macro_rules.rs:29:13
2024-04-08 12:12:47 -05:00
|
LL | macro_rules! m2 { () => { } };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: remove the `#[macro_export]` or move this `macro_rules!` outside the of the current associated function `bar` and up 2 bodies
= note: a `macro_rules!` definition is non-local if it is nested inside an item and has a `#[macro_export]` attribute
= note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue <https://github.com/rust-lang/rust/issues/120363>
warning: 4 warnings emitted