You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #53459 - petrochenkov:stabmore, r=nrc
Stabilize a few secondary macro features
- `tool_attributes` - closes#44690
- `proc_macro_path_invoc` - this feature was created due to issues with tool attributes (#51277), those issues are now fixed (#52841)
- partially `proc_macro_gen` - this feature was created due to issue #50504, the issue is now fixed (#51952), so proc macros can generate modules. They still can't generate `macro_rules` items though due to unclear hygiene interactions.
= note: for more information, see issue #50504 <https://github.com/rust-lang/rust/issues/50504>
34
34
35
35
warning: cannot find type `OuterDerive` in this scope
36
-
--> $DIR/generate-mod.rs:28:10
36
+
--> $DIR/generate-mod.rs:26:10
37
37
|
38
38
LL | #[derive(generate_mod::CheckDerive)] //~ WARN cannot find type `FromOutside` in this scope
39
39
| ^^^^^^^^^^^^^^^^^^^^^^^^^ names from parent modules are not accessible without an explicit import
= note: for more information, see issue #50504 <https://github.com/rust-lang/rust/issues/50504>
43
43
44
44
warning: cannot find type `FromOutside` in this scope
45
-
--> $DIR/generate-mod.rs:35:14
45
+
--> $DIR/generate-mod.rs:33:14
46
46
|
47
47
LL | #[derive(generate_mod::CheckDerive)] //~ WARN cannot find type `FromOutside` in this scope
48
48
| ^^^^^^^^^^^^^^^^^^^^^^^^^ names from parent modules are not accessible without an explicit import
= note: for more information, see issue #50504 <https://github.com/rust-lang/rust/issues/50504>
52
52
53
53
warning: cannot find type `OuterDerive` in this scope
54
-
--> $DIR/generate-mod.rs:35:14
54
+
--> $DIR/generate-mod.rs:33:14
55
55
|
56
56
LL | #[derive(generate_mod::CheckDerive)] //~ WARN cannot find type `FromOutside` in this scope
57
57
| ^^^^^^^^^^^^^^^^^^^^^^^^^ names from parent modules are not accessible without an explicit import
0 commit comments