2018-07-07 15:07:06 -05:00
|
|
|
error[E0412]: cannot find type `FromOutside` in this scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/generate-mod.rs:35:13
|
2018-06-24 11:54:23 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | genmod!(FromOutside, Outer);
|
2018-07-07 15:07:06 -05:00
|
|
|
| ^^^^^^^^^^^ not found in this scope
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `Outer` in this scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/generate-mod.rs:35:26
|
2018-07-07 15:07:06 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | genmod!(FromOutside, Outer);
|
2018-07-07 15:07:06 -05:00
|
|
|
| ^^^^^ not found in this scope
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `FromOutside` in this scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/generate-mod.rs:19:18
|
2018-07-07 15:07:06 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | type A = FromOutside;
|
2018-07-07 15:07:06 -05:00
|
|
|
| ^^^^^^^^^^^ not found in this scope
|
|
|
|
...
|
|
|
|
LL | genmod_transparent!();
|
2021-10-14 13:28:28 -05:00
|
|
|
| --------------------- in this macro invocation
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the macro `genmod_transparent` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-07-07 15:07:06 -05:00
|
|
|
|
|
|
|
error[E0412]: cannot find type `Outer` in this scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/generate-mod.rs:20:22
|
2018-07-07 15:07:06 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | type Inner = Outer;
|
2018-07-07 15:07:06 -05:00
|
|
|
| ^^^^^ not found in this scope
|
|
|
|
...
|
|
|
|
LL | genmod_transparent!();
|
2021-10-14 13:28:28 -05:00
|
|
|
| --------------------- in this macro invocation
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the macro `genmod_transparent` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-07-07 15:07:06 -05:00
|
|
|
|
|
|
|
error[E0412]: cannot find type `FromOutside` in this scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/generate-mod.rs:28:18
|
2018-07-07 15:07:06 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | type A = FromOutside;
|
2018-07-07 15:07:06 -05:00
|
|
|
| ^^^^^^^^^^^ not found in this scope
|
|
|
|
...
|
|
|
|
LL | genmod_legacy!();
|
2021-10-14 13:28:28 -05:00
|
|
|
| ---------------- in this macro invocation
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the macro `genmod_legacy` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-07-07 15:07:06 -05:00
|
|
|
|
|
|
|
error[E0412]: cannot find type `Outer` in this scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/generate-mod.rs:29:22
|
2018-07-07 15:07:06 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | type Inner = Outer;
|
2018-07-07 15:07:06 -05:00
|
|
|
| ^^^^^ not found in this scope
|
2018-06-24 11:54:23 -05:00
|
|
|
...
|
2018-07-07 15:07:06 -05:00
|
|
|
LL | genmod_legacy!();
|
2021-10-14 13:28:28 -05:00
|
|
|
| ---------------- in this macro invocation
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the macro `genmod_legacy` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-06-24 11:54:23 -05:00
|
|
|
|
2018-08-22 18:19:38 -05:00
|
|
|
error: aborting due to 6 previous errors
|
2018-06-24 11:54:23 -05:00
|
|
|
|
2018-08-22 18:19:38 -05:00
|
|
|
For more information about this error, try `rustc --explain E0412`.
|