]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/lint-stability-2.stderr
Auto merge of #106884 - clubby789:fieldless-enum-debug, r=michaelwoerister
[rust.git] / tests / ui / lint / lint-stability-2.stderr
1 error[E0658]: use of unstable library feature 'unstable_test_feature'
2   --> $DIR/lint-stability-2.rs:40:13
3    |
4 LL |         foo.method_deprecated_unstable();
5    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
8
9 error[E0658]: use of unstable library feature 'unstable_test_feature'
10   --> $DIR/lint-stability-2.rs:42:9
11    |
12 LL |         Foo::method_deprecated_unstable(&foo);
13    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14    |
15    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
16
17 error[E0658]: use of unstable library feature 'unstable_test_feature'
18   --> $DIR/lint-stability-2.rs:44:9
19    |
20 LL |         <Foo>::method_deprecated_unstable(&foo);
21    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
22    |
23    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
24
25 error[E0658]: use of unstable library feature 'unstable_test_feature'
26   --> $DIR/lint-stability-2.rs:46:13
27    |
28 LL |         foo.trait_deprecated_unstable();
29    |             ^^^^^^^^^^^^^^^^^^^^^^^^^
30    |
31    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
32
33 error[E0658]: use of unstable library feature 'unstable_test_feature'
34   --> $DIR/lint-stability-2.rs:48:9
35    |
36 LL |         <Foo>::trait_deprecated_unstable(&foo);
37    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
38    |
39    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
40
41 error[E0658]: use of unstable library feature 'unstable_test_feature'
42   --> $DIR/lint-stability-2.rs:51:13
43    |
44 LL |         foo.method_deprecated_unstable_text();
45    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
46    |
47    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
48
49 error[E0658]: use of unstable library feature 'unstable_test_feature'
50   --> $DIR/lint-stability-2.rs:53:9
51    |
52 LL |         Foo::method_deprecated_unstable_text(&foo);
53    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
54    |
55    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
56
57 error[E0658]: use of unstable library feature 'unstable_test_feature'
58   --> $DIR/lint-stability-2.rs:55:9
59    |
60 LL |         <Foo>::method_deprecated_unstable_text(&foo);
61    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
62    |
63    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
64
65 error[E0658]: use of unstable library feature 'unstable_test_feature'
66   --> $DIR/lint-stability-2.rs:57:13
67    |
68 LL |         foo.trait_deprecated_unstable_text();
69    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
70    |
71    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
72
73 error[E0658]: use of unstable library feature 'unstable_test_feature'
74   --> $DIR/lint-stability-2.rs:59:9
75    |
76 LL |         <Foo>::trait_deprecated_unstable_text(&foo);
77    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
78    |
79    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
80
81 error[E0658]: use of unstable library feature 'unstable_test_feature'
82   --> $DIR/lint-stability-2.rs:62:13
83    |
84 LL |         foo.method_unstable();
85    |             ^^^^^^^^^^^^^^^
86    |
87    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
88
89 error[E0658]: use of unstable library feature 'unstable_test_feature'
90   --> $DIR/lint-stability-2.rs:63:9
91    |
92 LL |         Foo::method_unstable(&foo);
93    |         ^^^^^^^^^^^^^^^^^^^^
94    |
95    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
96
97 error[E0658]: use of unstable library feature 'unstable_test_feature'
98   --> $DIR/lint-stability-2.rs:64:9
99    |
100 LL |         <Foo>::method_unstable(&foo);
101    |         ^^^^^^^^^^^^^^^^^^^^^^
102    |
103    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
104
105 error[E0658]: use of unstable library feature 'unstable_test_feature'
106   --> $DIR/lint-stability-2.rs:65:13
107    |
108 LL |         foo.trait_unstable();
109    |             ^^^^^^^^^^^^^^
110    |
111    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
112
113 error[E0658]: use of unstable library feature 'unstable_test_feature'
114   --> $DIR/lint-stability-2.rs:66:9
115    |
116 LL |         <Foo>::trait_unstable(&foo);
117    |         ^^^^^^^^^^^^^^^^^^^^^
118    |
119    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
120
121 error[E0658]: use of unstable library feature 'unstable_test_feature': text
122   --> $DIR/lint-stability-2.rs:68:13
123    |
124 LL |         foo.method_unstable_text();
125    |             ^^^^^^^^^^^^^^^^^^^^
126    |
127    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
128
129 error[E0658]: use of unstable library feature 'unstable_test_feature': text
130   --> $DIR/lint-stability-2.rs:70:9
131    |
132 LL |         Foo::method_unstable_text(&foo);
133    |         ^^^^^^^^^^^^^^^^^^^^^^^^^
134    |
135    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
136
137 error[E0658]: use of unstable library feature 'unstable_test_feature': text
138   --> $DIR/lint-stability-2.rs:72:9
139    |
140 LL |         <Foo>::method_unstable_text(&foo);
141    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
142    |
143    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
144
145 error[E0658]: use of unstable library feature 'unstable_test_feature': text
146   --> $DIR/lint-stability-2.rs:74:13
147    |
148 LL |         foo.trait_unstable_text();
149    |             ^^^^^^^^^^^^^^^^^^^
150    |
151    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
152
153 error[E0658]: use of unstable library feature 'unstable_test_feature': text
154   --> $DIR/lint-stability-2.rs:76:9
155    |
156 LL |         <Foo>::trait_unstable_text(&foo);
157    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
158    |
159    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
160
161 error[E0658]: use of unstable library feature 'unstable_test_feature'
162   --> $DIR/lint-stability-2.rs:131:13
163    |
164 LL |         foo.trait_deprecated_unstable();
165    |             ^^^^^^^^^^^^^^^^^^^^^^^^^
166    |
167    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
168
169 error[E0658]: use of unstable library feature 'unstable_test_feature'
170   --> $DIR/lint-stability-2.rs:133:9
171    |
172 LL |         <Foo>::trait_deprecated_unstable(&foo);
173    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
174    |
175    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
176
177 error[E0658]: use of unstable library feature 'unstable_test_feature'
178   --> $DIR/lint-stability-2.rs:135:13
179    |
180 LL |         foo.trait_deprecated_unstable_text();
181    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
182    |
183    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
184
185 error[E0658]: use of unstable library feature 'unstable_test_feature'
186   --> $DIR/lint-stability-2.rs:137:9
187    |
188 LL |         <Foo>::trait_deprecated_unstable_text(&foo);
189    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
190    |
191    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
192
193 error[E0658]: use of unstable library feature 'unstable_test_feature'
194   --> $DIR/lint-stability-2.rs:139:13
195    |
196 LL |         foo.trait_unstable();
197    |             ^^^^^^^^^^^^^^
198    |
199    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
200
201 error[E0658]: use of unstable library feature 'unstable_test_feature'
202   --> $DIR/lint-stability-2.rs:140:9
203    |
204 LL |         <Foo>::trait_unstable(&foo);
205    |         ^^^^^^^^^^^^^^^^^^^^^
206    |
207    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
208
209 error[E0658]: use of unstable library feature 'unstable_test_feature': text
210   --> $DIR/lint-stability-2.rs:141:13
211    |
212 LL |         foo.trait_unstable_text();
213    |             ^^^^^^^^^^^^^^^^^^^
214    |
215    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
216
217 error[E0658]: use of unstable library feature 'unstable_test_feature': text
218   --> $DIR/lint-stability-2.rs:143:9
219    |
220 LL |         <Foo>::trait_unstable_text(&foo);
221    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
222    |
223    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
224
225 error[E0658]: use of unstable library feature 'unstable_test_feature'
226   --> $DIR/lint-stability-2.rs:154:13
227    |
228 LL |         foo.trait_deprecated_unstable();
229    |             ^^^^^^^^^^^^^^^^^^^^^^^^^
230    |
231    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
232
233 error[E0658]: use of unstable library feature 'unstable_test_feature'
234   --> $DIR/lint-stability-2.rs:156:13
235    |
236 LL |         foo.trait_deprecated_unstable_text();
237    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
238    |
239    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
240
241 error[E0658]: use of unstable library feature 'unstable_test_feature'
242   --> $DIR/lint-stability-2.rs:158:13
243    |
244 LL |         foo.trait_unstable();
245    |             ^^^^^^^^^^^^^^
246    |
247    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
248
249 error[E0658]: use of unstable library feature 'unstable_test_feature': text
250   --> $DIR/lint-stability-2.rs:159:13
251    |
252 LL |         foo.trait_unstable_text();
253    |             ^^^^^^^^^^^^^^^^^^^
254    |
255    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
256
257 error: aborting due to 32 previous errors
258
259 For more information about this error, try `rustc --explain E0658`.