]> git.lizzy.rs Git - rust.git/blob - src/test/ui/hygiene/generate-mod.stderr
Rollup merge of #90202 - matthewjasper:xcrate-hygiene, r=petrochenkov
[rust.git] / src / test / ui / hygiene / generate-mod.stderr
1 error[E0412]: cannot find type `FromOutside` in this scope
2   --> $DIR/generate-mod.rs:35:13
3    |
4 LL |     genmod!(FromOutside, Outer);
5    |             ^^^^^^^^^^^ not found in this scope
6
7 error[E0412]: cannot find type `Outer` in this scope
8   --> $DIR/generate-mod.rs:35:26
9    |
10 LL |     genmod!(FromOutside, Outer);
11    |                          ^^^^^ not found in this scope
12
13 error[E0412]: cannot find type `FromOutside` in this scope
14   --> $DIR/generate-mod.rs:19:18
15    |
16 LL |         type A = FromOutside;
17    |                  ^^^^^^^^^^^ not found in this scope
18 ...
19 LL |     genmod_transparent!();
20    |     --------------------- in this macro invocation
21    |
22    = note: this error originates in the macro `genmod_transparent` (in Nightly builds, run with -Z macro-backtrace for more info)
23
24 error[E0412]: cannot find type `Outer` in this scope
25   --> $DIR/generate-mod.rs:20:22
26    |
27 LL |         type Inner = Outer;
28    |                      ^^^^^ not found in this scope
29 ...
30 LL |     genmod_transparent!();
31    |     --------------------- in this macro invocation
32    |
33    = note: this error originates in the macro `genmod_transparent` (in Nightly builds, run with -Z macro-backtrace for more info)
34
35 error[E0412]: cannot find type `FromOutside` in this scope
36   --> $DIR/generate-mod.rs:28:18
37    |
38 LL |         type A = FromOutside;
39    |                  ^^^^^^^^^^^ not found in this scope
40 ...
41 LL |     genmod_legacy!();
42    |     ---------------- in this macro invocation
43    |
44    = note: this error originates in the macro `genmod_legacy` (in Nightly builds, run with -Z macro-backtrace for more info)
45
46 error[E0412]: cannot find type `Outer` in this scope
47   --> $DIR/generate-mod.rs:29:22
48    |
49 LL |         type Inner = Outer;
50    |                      ^^^^^ not found in this scope
51 ...
52 LL |     genmod_legacy!();
53    |     ---------------- in this macro invocation
54    |
55    = note: this error originates in the macro `genmod_legacy` (in Nightly builds, run with -Z macro-backtrace for more info)
56
57 error: aborting due to 6 previous errors
58
59 For more information about this error, try `rustc --explain E0412`.