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