rust/tests/ui/hygiene/generate-mod.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
2.1 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!();
2021-10-14 13:28:28 -05:00
| --------------------- in this macro invocation
|
= note: this error originates in the macro `genmod_transparent` (in Nightly builds, run with -Z macro-backtrace for more info)
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!();
2021-10-14 13:28:28 -05:00
| --------------------- in this macro invocation
|
= note: this error originates in the macro `genmod_transparent` (in Nightly builds, run with -Z macro-backtrace for more info)
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!();
2021-10-14 13:28:28 -05:00
| ---------------- in this macro invocation
|
= note: this error originates in the macro `genmod_legacy` (in Nightly builds, run with -Z macro-backtrace for more info)
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!();
2021-10-14 13:28:28 -05:00
| ---------------- in this macro invocation
|
= 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
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`.