rust/src/test/ui/hygiene/generate-mod.stderr

52 lines
1.5 KiB
Plaintext
Raw Normal View History

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);
| ^^^^^^^^^^^ 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
|
2019-03-09 06:03:44 -06:00
LL | genmod!(FromOutside, Outer);
| ^^^^^ 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
|
2019-03-09 06:03:44 -06:00
LL | type A = FromOutside;
| ^^^^^^^^^^^ 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
|
2019-03-09 06:03:44 -06:00
LL | type Inner = Outer;
| ^^^^^ 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
|
2019-03-09 06:03:44 -06:00
LL | type A = FromOutside;
| ^^^^^^^^^^^ 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
|
2019-03-09 06:03:44 -06:00
LL | type Inner = Outer;
| ^^^^^ not found in this scope
2018-06-24 11:54:23 -05:00
...
LL | genmod_legacy!();
| ----------------- in this macro invocation
2018-06-24 11:54:23 -05:00
error: aborting due to 6 previous errors
2018-06-24 11:54:23 -05:00
For more information about this error, try `rustc --explain E0412`.