2018-07-07 20:07:06 +00:00
|
|
|
error[E0412]: cannot find type `FromOutside` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/generate-mod.rs:35:13
|
2018-06-24 16:54:23 +00:00
|
|
|
|
|
2018-07-07 20:07:06 +00:00
|
|
|
LL | genmod!(FromOutside, Outer); //~ ERROR cannot find type `FromOutside` in this scope
|
|
|
|
| ^^^^^^^^^^^ not found in this scope
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `Outer` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/generate-mod.rs:35:26
|
2018-07-07 20:07:06 +00:00
|
|
|
|
|
|
|
|
LL | genmod!(FromOutside, Outer); //~ ERROR cannot find type `FromOutside` in this scope
|
|
|
|
| ^^^^^ not found in this scope
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `FromOutside` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/generate-mod.rs:19:18
|
2018-07-07 20:07:06 +00:00
|
|
|
|
|
|
|
|
LL | type A = FromOutside; //~ ERROR cannot find type `FromOutside` in this scope
|
|
|
|
| ^^^^^^^^^^^ not found in this scope
|
|
|
|
...
|
|
|
|
LL | genmod_transparent!();
|
|
|
|
| ---------------------- in this macro invocation
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `Outer` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/generate-mod.rs:20:22
|
2018-07-07 20:07:06 +00:00
|
|
|
|
|
|
|
|
LL | type Inner = Outer; //~ ERROR cannot find type `Outer` in this scope
|
|
|
|
| ^^^^^ not found in this scope
|
|
|
|
...
|
|
|
|
LL | genmod_transparent!();
|
|
|
|
| ---------------------- in this macro invocation
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `FromOutside` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/generate-mod.rs:28:18
|
2018-07-07 20:07:06 +00:00
|
|
|
|
|
|
|
|
LL | type A = FromOutside; //~ ERROR cannot find type `FromOutside` in this scope
|
|
|
|
| ^^^^^^^^^^^ not found in this scope
|
|
|
|
...
|
|
|
|
LL | genmod_legacy!();
|
|
|
|
| ----------------- in this macro invocation
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `Outer` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/generate-mod.rs:29:22
|
2018-07-07 20:07:06 +00:00
|
|
|
|
|
|
|
|
LL | type Inner = Outer; //~ ERROR cannot find type `Outer` in this scope
|
|
|
|
| ^^^^^ not found in this scope
|
2018-06-24 16:54:23 +00:00
|
|
|
...
|
2018-07-07 20:07:06 +00:00
|
|
|
LL | genmod_legacy!();
|
|
|
|
| ----------------- in this macro invocation
|
2018-06-24 16:54:23 +00:00
|
|
|
|
2018-08-22 23:19:38 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2018-06-24 16:54:23 +00:00
|
|
|
|
2018-08-22 23:19:38 +00:00
|
|
|
For more information about this error, try `rustc --explain E0412`.
|