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!();
|
|
|
|
| ---------------------- in this macro invocation
|
|
|
|
|
|
|
|
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!();
|
|
|
|
| ---------------------- in this macro invocation
|
|
|
|
|
|
|
|
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!();
|
|
|
|
| ----------------- in this macro invocation
|
|
|
|
|
|
|
|
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!();
|
|
|
|
| ----------------- in this macro invocation
|
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`.
|