]> git.proxmox.com Git - rustc.git/blob - src/test/ui/privacy/associated-item-privacy-inherent.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / privacy / associated-item-privacy-inherent.stderr
1 error: type `for<'r> fn(&'r priv_nominal::Pub) {priv_nominal::Pub::method}` is private
2 --> $DIR/associated-item-privacy-inherent.rs:13:21
3 |
4 LL | let value = Pub::method;
5 | ^^^^^^^^^^^ private type
6 ...
7 LL | priv_nominal::mac!();
8 | --------------------- in this macro invocation
9 |
10 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
11
12 error: type `for<'r> fn(&'r priv_nominal::Pub) {priv_nominal::Pub::method}` is private
13 --> $DIR/associated-item-privacy-inherent.rs:15:9
14 |
15 LL | value;
16 | ^^^^^ private type
17 ...
18 LL | priv_nominal::mac!();
19 | --------------------- in this macro invocation
20 |
21 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
22
23 error: type `for<'r> fn(&'r priv_nominal::Pub) {priv_nominal::Pub::method}` is private
24 --> $DIR/associated-item-privacy-inherent.rs:17:13
25 |
26 LL | Pub.method();
27 | ^^^^^^ private type
28 ...
29 LL | priv_nominal::mac!();
30 | --------------------- in this macro invocation
31 |
32 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
33
34 error: associated constant `CONST` is private
35 --> $DIR/associated-item-privacy-inherent.rs:19:9
36 |
37 LL | Pub::CONST;
38 | ^^^^^^^^^^ private associated constant
39 ...
40 LL | priv_nominal::mac!();
41 | --------------------- in this macro invocation
42 |
43 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
44
45 error: type `priv_signature::Priv` is private
46 --> $DIR/associated-item-privacy-inherent.rs:37:21
47 |
48 LL | let value = Pub::method;
49 | ^^^^^^^^^^^ private type
50 ...
51 LL | priv_signature::mac!();
52 | ----------------------- in this macro invocation
53 |
54 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
55
56 error: type `priv_signature::Priv` is private
57 --> $DIR/associated-item-privacy-inherent.rs:39:9
58 |
59 LL | value;
60 | ^^^^^ private type
61 ...
62 LL | priv_signature::mac!();
63 | ----------------------- in this macro invocation
64 |
65 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
66
67 error: type `priv_signature::Priv` is private
68 --> $DIR/associated-item-privacy-inherent.rs:41:13
69 |
70 LL | Pub.method(loop {});
71 | ^^^^^^ private type
72 ...
73 LL | priv_signature::mac!();
74 | ----------------------- in this macro invocation
75 |
76 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
77
78 error: type `priv_substs::Priv` is private
79 --> $DIR/associated-item-privacy-inherent.rs:57:21
80 |
81 LL | let value = Pub::method::<Priv>;
82 | ^^^^^^^^^^^^^^^^^^^ private type
83 ...
84 LL | priv_substs::mac!();
85 | -------------------- in this macro invocation
86 |
87 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
88
89 error: type `priv_substs::Priv` is private
90 --> $DIR/associated-item-privacy-inherent.rs:59:9
91 |
92 LL | value;
93 | ^^^^^ private type
94 ...
95 LL | priv_substs::mac!();
96 | -------------------- in this macro invocation
97 |
98 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
99
100 error: type `priv_substs::Priv` is private
101 --> $DIR/associated-item-privacy-inherent.rs:61:9
102 |
103 LL | Pub.method::<Priv>();
104 | ^^^^^^^^^^^^^^^^^^^^ private type
105 ...
106 LL | priv_substs::mac!();
107 | -------------------- in this macro invocation
108 |
109 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
110
111 error: type `priv_parent_substs::Priv` is private
112 --> $DIR/associated-item-privacy-inherent.rs:80:21
113 |
114 LL | let value = <Pub>::method;
115 | ^^^^^^^^^^^^^ private type
116 ...
117 LL | priv_parent_substs::mac!();
118 | --------------------------- in this macro invocation
119 |
120 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
121
122 error: type `priv_parent_substs::Priv` is private
123 --> $DIR/associated-item-privacy-inherent.rs:82:9
124 |
125 LL | value;
126 | ^^^^^ private type
127 ...
128 LL | priv_parent_substs::mac!();
129 | --------------------------- in this macro invocation
130 |
131 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
132
133 error: type `priv_parent_substs::Priv` is private
134 --> $DIR/associated-item-privacy-inherent.rs:84:21
135 |
136 LL | let value = Pub::method;
137 | ^^^^^^^^^^^ private type
138 ...
139 LL | priv_parent_substs::mac!();
140 | --------------------------- in this macro invocation
141 |
142 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
143
144 error: type `priv_parent_substs::Priv` is private
145 --> $DIR/associated-item-privacy-inherent.rs:86:9
146 |
147 LL | value;
148 | ^^^^^ private type
149 ...
150 LL | priv_parent_substs::mac!();
151 | --------------------------- in this macro invocation
152 |
153 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
154
155 error: type `priv_parent_substs::Priv` is private
156 --> $DIR/associated-item-privacy-inherent.rs:88:21
157 |
158 LL | let value = <Pub>::static_method;
159 | ^^^^^^^^^^^^^^^^^^^^ private type
160 ...
161 LL | priv_parent_substs::mac!();
162 | --------------------------- in this macro invocation
163 |
164 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
165
166 error: type `priv_parent_substs::Priv` is private
167 --> $DIR/associated-item-privacy-inherent.rs:90:9
168 |
169 LL | value;
170 | ^^^^^ private type
171 ...
172 LL | priv_parent_substs::mac!();
173 | --------------------------- in this macro invocation
174 |
175 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
176
177 error: type `priv_parent_substs::Priv` is private
178 --> $DIR/associated-item-privacy-inherent.rs:92:21
179 |
180 LL | let value = Pub::static_method;
181 | ^^^^^^^^^^^^^^^^^^ private type
182 ...
183 LL | priv_parent_substs::mac!();
184 | --------------------------- in this macro invocation
185 |
186 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
187
188 error: type `priv_parent_substs::Priv` is private
189 --> $DIR/associated-item-privacy-inherent.rs:94:9
190 |
191 LL | value;
192 | ^^^^^ private type
193 ...
194 LL | priv_parent_substs::mac!();
195 | --------------------------- in this macro invocation
196 |
197 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
198
199 error: type `priv_parent_substs::Priv` is private
200 --> $DIR/associated-item-privacy-inherent.rs:96:19
201 |
202 LL | Pub(Priv).method();
203 | ^^^^^^ private type
204 ...
205 LL | priv_parent_substs::mac!();
206 | --------------------------- in this macro invocation
207 |
208 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
209
210 error: type `priv_parent_substs::Priv` is private
211 --> $DIR/associated-item-privacy-inherent.rs:99:10
212 |
213 LL | <Pub>::CONST;
214 | ^^^ private type
215 ...
216 LL | priv_parent_substs::mac!();
217 | --------------------------- in this macro invocation
218 |
219 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
220
221 error: type `priv_parent_substs::Priv` is private
222 --> $DIR/associated-item-privacy-inherent.rs:101:9
223 |
224 LL | Pub::CONST;
225 | ^^^^^^^^^^ private type
226 ...
227 LL | priv_parent_substs::mac!();
228 | --------------------------- in this macro invocation
229 |
230 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
231
232 error: aborting due to 21 previous errors
233