2024-05-13 12:58:40 -05:00
warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
2024-06-29 05:10:33 -05:00
--> $DIR/inside-macro_rules.rs:9:13
2024-04-08 12:12:47 -05:00
|
2024-05-18 08:07:28 -05:00
LL | fn my_func() {
| ------------ move the `impl` block outside of this function `my_func`
2024-04-08 12:12:47 -05:00
LL | impl MacroTrait for OutsideStruct {}
2024-05-15 12:13:02 -05:00
| ^^^^^----------^^^^^-------------
| | |
| | `OutsideStruct` is not local
| `MacroTrait` is not local
2024-04-08 12:12:47 -05:00
...
LL | m!();
| ---- in this macro invocation
|
2024-05-29 07:47:01 -05:00
= note: the macro `m` defines the non-local `impl`, and may need to be changed
2024-05-13 13:15:57 -05:00
= note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
2024-04-08 12:12:47 -05:00
= 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
= note: this warning originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
warning: 1 warning emitted