@@ -5,7 +5,7 @@ LL | generate_mod::check!();
55 | ^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
66 |
77 = help: consider importing this struct:
8- FromOutside
8+ use FromOutside;
99 = note: this error originates in the macro `generate_mod::check` (in Nightly builds, run with -Z macro-backtrace for more info)
1010
1111error[E0412]: cannot find type `Outer` in this scope
@@ -15,7 +15,7 @@ LL | generate_mod::check!();
1515 | ^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
1616 |
1717 = help: consider importing this struct:
18- Outer
18+ use Outer;
1919 = note: this error originates in the macro `generate_mod::check` (in Nightly builds, run with -Z macro-backtrace for more info)
2020
2121error[E0412]: cannot find type `FromOutside` in this scope
@@ -25,7 +25,7 @@ LL | #[generate_mod::check_attr]
2525 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
2626 |
2727 = help: consider importing this struct:
28- FromOutside
28+ use FromOutside;
2929 = note: this error originates in the attribute macro `generate_mod::check_attr` (in Nightly builds, run with -Z macro-backtrace for more info)
3030
3131error[E0412]: cannot find type `OuterAttr` in this scope
@@ -35,7 +35,7 @@ LL | #[generate_mod::check_attr]
3535 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
3636 |
3737 = help: consider importing this struct:
38- OuterAttr
38+ use OuterAttr;
3939 = note: this error originates in the attribute macro `generate_mod::check_attr` (in Nightly builds, run with -Z macro-backtrace for more info)
4040
4141error: cannot find type `FromOutside` in this scope
0 commit comments