]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/generate-mod.stderr
Make PROC_MACRO_DERIVE_RESOLUTION_FALLBACK a hard error
[rust.git] / src / test / ui / proc-macro / generate-mod.stderr
1 error[E0412]: cannot find type `FromOutside` in this scope
2   --> $DIR/generate-mod.rs:9:1
3    |
4 LL | generate_mod::check!();
5    | ^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
6    |
7    = note: consider importing this struct:
8            FromOutside
9    = note: this error originates in the macro `generate_mod::check` (in Nightly builds, run with -Z macro-backtrace for more info)
10
11 error[E0412]: cannot find type `Outer` in this scope
12   --> $DIR/generate-mod.rs:9:1
13    |
14 LL | generate_mod::check!();
15    | ^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
16    |
17    = note: consider importing this struct:
18            Outer
19    = note: this error originates in the macro `generate_mod::check` (in Nightly builds, run with -Z macro-backtrace for more info)
20
21 error[E0412]: cannot find type `FromOutside` in this scope
22   --> $DIR/generate-mod.rs:12:1
23    |
24 LL | #[generate_mod::check_attr]
25    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
26    |
27    = note: consider importing this struct:
28            FromOutside
29    = note: this error originates in the attribute macro `generate_mod::check_attr` (in Nightly builds, run with -Z macro-backtrace for more info)
30
31 error[E0412]: cannot find type `OuterAttr` in this scope
32   --> $DIR/generate-mod.rs:12:1
33    |
34 LL | #[generate_mod::check_attr]
35    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
36    |
37    = note: consider importing this struct:
38            OuterAttr
39    = note: this error originates in the attribute macro `generate_mod::check_attr` (in Nightly builds, run with -Z macro-backtrace for more info)
40
41 error[E0412]: cannot find type `FromOutside` in this scope
42   --> $DIR/generate-mod.rs:16:10
43    |
44 LL | #[derive(generate_mod::CheckDerive)]
45    |          ^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
46    |
47    = note: consider importing this struct:
48            FromOutside
49    = note: this error originates in the derive macro `generate_mod::CheckDerive` (in Nightly builds, run with -Z macro-backtrace for more info)
50
51 error[E0412]: cannot find type `OuterDerive` in this scope
52   --> $DIR/generate-mod.rs:16:10
53    |
54 LL | #[derive(generate_mod::CheckDerive)]
55    |          ^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
56    |
57    = note: consider importing this struct:
58            OuterDerive
59    = note: this error originates in the derive macro `generate_mod::CheckDerive` (in Nightly builds, run with -Z macro-backtrace for more info)
60
61 error[E0412]: cannot find type `FromOutside` in this scope
62   --> $DIR/generate-mod.rs:21:14
63    |
64 LL |     #[derive(generate_mod::CheckDerive)]
65    |              ^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
66    |
67    = note: consider importing this struct:
68            FromOutside
69    = note: this error originates in the derive macro `generate_mod::CheckDerive` (in Nightly builds, run with -Z macro-backtrace for more info)
70
71 error[E0412]: cannot find type `OuterDerive` in this scope
72   --> $DIR/generate-mod.rs:21:14
73    |
74 LL |     #[derive(generate_mod::CheckDerive)]
75    |              ^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
76    |
77    = note: consider importing this struct:
78            OuterDerive
79    = note: this error originates in the derive macro `generate_mod::CheckDerive` (in Nightly builds, run with -Z macro-backtrace for more info)
80
81 error[E0412]: cannot find type `FromOutside` in this scope
82   --> $DIR/generate-mod.rs:26:10
83    |
84 LL | #[derive(generate_mod::CheckDeriveLint)]
85    |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
86    |
87    = note: consider importing this struct:
88            FromOutside
89    = note: this error originates in the derive macro `generate_mod::CheckDeriveLint` (in Nightly builds, run with -Z macro-backtrace for more info)
90
91 error[E0412]: cannot find type `OuterDeriveLint` in this scope
92   --> $DIR/generate-mod.rs:26:10
93    |
94 LL | #[derive(generate_mod::CheckDeriveLint)]
95    |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
96    |
97    = note: consider importing this struct:
98            OuterDeriveLint
99    = note: this error originates in the derive macro `generate_mod::CheckDeriveLint` (in Nightly builds, run with -Z macro-backtrace for more info)
100
101 error: aborting due to 10 previous errors
102
103 For more information about this error, try `rustc --explain E0412`.