@@ -5,7 +5,7 @@ LL | generate_mod::check!();
5
5
| ^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
6
6
|
7
7
= help: consider importing this struct:
8
- FromOutside
8
+ use FromOutside;
9
9
= note: this error originates in the macro `generate_mod::check` (in Nightly builds, run with -Z macro-backtrace for more info)
10
10
11
11
error[E0412]: cannot find type `Outer` in this scope
@@ -15,7 +15,7 @@ LL | generate_mod::check!();
15
15
| ^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
16
16
|
17
17
= help: consider importing this struct:
18
- Outer
18
+ use Outer;
19
19
= note: this error originates in the macro `generate_mod::check` (in Nightly builds, run with -Z macro-backtrace for more info)
20
20
21
21
error[E0412]: cannot find type `FromOutside` in this scope
@@ -25,7 +25,7 @@ LL | #[generate_mod::check_attr]
25
25
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
26
26
|
27
27
= help: consider importing this struct:
28
- FromOutside
28
+ use FromOutside;
29
29
= note: this error originates in the attribute macro `generate_mod::check_attr` (in Nightly builds, run with -Z macro-backtrace for more info)
30
30
31
31
error[E0412]: cannot find type `OuterAttr` in this scope
@@ -35,7 +35,7 @@ LL | #[generate_mod::check_attr]
35
35
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
36
36
|
37
37
= help: consider importing this struct:
38
- OuterAttr
38
+ use OuterAttr;
39
39
= note: this error originates in the attribute macro `generate_mod::check_attr` (in Nightly builds, run with -Z macro-backtrace for more info)
40
40
41
41
error: cannot find type `FromOutside` in this scope
0 commit comments