]> git.lizzy.rs Git - rust.git/blob - tests/ui/non_copy_const.stderr
Merge branch 'master' into rustfmt_tests
[rust.git] / tests / ui / non_copy_const.stderr
1 error: a const item should never be interior mutable
2   --> $DIR/non_copy_const.rs:19:1
3    |
4 19 | const ATOMIC: AtomicUsize = AtomicUsize::new(5); //~ ERROR interior mutable
5    | -----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    | |
7    | help: make this a static item: `static`
8    |
9    = note: #[deny(clippy::declare_interior_mutable_const)] on by default
10
11 error: a const item should never be interior mutable
12   --> $DIR/non_copy_const.rs:20:1
13    |
14 20 | const CELL: Cell<usize> = Cell::new(6); //~ ERROR interior mutable
15    | -----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
16    | |
17    | help: make this a static item: `static`
18
19 error: a const item should never be interior mutable
20   --> $DIR/non_copy_const.rs:21:1
21    |
22 21 | const ATOMIC_TUPLE: ([AtomicUsize; 1], Vec<AtomicUsize>, u8) = ([ATOMIC], Vec::new(), 7);
23    | -----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24    | |
25    | help: make this a static item: `static`
26
27 error: a const item should never be interior mutable
28   --> $DIR/non_copy_const.rs:26:9
29    |
30 26 |         const $name: $ty = $e;
31    |         ^^^^^^^^^^^^^^^^^^^^^^
32 ...
33 29 | declare_const!(_ONCE: Once = Once::new()); //~ ERROR interior mutable
34    | ------------------------------------------ in this macro invocation
35
36 error: a const item should never be interior mutable
37   --> $DIR/non_copy_const.rs:50:5
38    |
39 50 |     const ATOMIC: AtomicUsize; //~ ERROR interior mutable
40    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
41
42 error: a const item should never be interior mutable
43   --> $DIR/non_copy_const.rs:54:5
44    |
45 54 |     const INPUT: T;
46    |     ^^^^^^^^^^^^^^^
47    |
48 help: consider requiring `T` to be `Copy`
49   --> $DIR/non_copy_const.rs:54:18
50    |
51 54 |     const INPUT: T;
52    |                  ^
53
54 error: a const item should never be interior mutable
55   --> $DIR/non_copy_const.rs:57:5
56    |
57 57 |     const ASSOC: Self::NonCopyType;
58    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
59    |
60 help: consider requiring `<Self as Trait<T>>::NonCopyType` to be `Copy`
61   --> $DIR/non_copy_const.rs:57:18
62    |
63 57 |     const ASSOC: Self::NonCopyType;
64    |                  ^^^^^^^^^^^^^^^^^
65
66 error: a const item should never be interior mutable
67   --> $DIR/non_copy_const.rs:61:5
68    |
69 61 |     const AN_INPUT: T = Self::INPUT;
70    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
71    |
72 help: consider requiring `T` to be `Copy`
73   --> $DIR/non_copy_const.rs:61:21
74    |
75 61 |     const AN_INPUT: T = Self::INPUT;
76    |                     ^
77
78 error: a const item should never be interior mutable
79   --> $DIR/non_copy_const.rs:26:9
80    |
81 26 |         const $name: $ty = $e;
82    |         ^^^^^^^^^^^^^^^^^^^^^^
83 ...
84 64 |     declare_const!(ANOTHER_INPUT: T = Self::INPUT); //~ ERROR interior mutable
85    |     ----------------------------------------------- in this macro invocation
86
87 error: a const item should never be interior mutable
88   --> $DIR/non_copy_const.rs:70:5
89    |
90 70 |     const SELF_2: Self;
91    |     ^^^^^^^^^^^^^^^^^^^
92    |
93 help: consider requiring `Self` to be `Copy`
94   --> $DIR/non_copy_const.rs:70:19
95    |
96 70 |     const SELF_2: Self;
97    |                   ^^^^
98
99 error: a const item should never be interior mutable
100   --> $DIR/non_copy_const.rs:91:5
101    |
102 91 |     const ASSOC_3: AtomicUsize = AtomicUsize::new(14); //~ ERROR interior mutable
103    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
104
105 error: a const item should never be interior mutable
106   --> $DIR/non_copy_const.rs:94:5
107    |
108 94 |     const U_SELF: U = U::SELF_2;
109    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
110    |
111 help: consider requiring `U` to be `Copy`
112   --> $DIR/non_copy_const.rs:94:19
113    |
114 94 |     const U_SELF: U = U::SELF_2;
115    |                   ^
116
117 error: a const item should never be interior mutable
118   --> $DIR/non_copy_const.rs:97:5
119    |
120 97 |     const T_ASSOC: T::NonCopyType = T::ASSOC;
121    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
122    |
123 help: consider requiring `<T as Trait<u32>>::NonCopyType` to be `Copy`
124   --> $DIR/non_copy_const.rs:97:20
125    |
126 97 |     const T_ASSOC: T::NonCopyType = T::ASSOC;
127    |                    ^^^^^^^^^^^^^^
128
129 error: a const item with interior mutability should not be borrowed
130    --> $DIR/non_copy_const.rs:104:5
131     |
132 104 |     ATOMIC.store(1, Ordering::SeqCst); //~ ERROR interior mutability
133     |     ^^^^^^
134     |
135     = note: #[deny(clippy::borrow_interior_mutable_const)] on by default
136     = help: assign this const to a local or static variable, and use the variable here
137
138 error: a const item with interior mutability should not be borrowed
139    --> $DIR/non_copy_const.rs:105:16
140     |
141 105 |     assert_eq!(ATOMIC.load(Ordering::SeqCst), 5); //~ ERROR interior mutability
142     |                ^^^^^^
143     |
144     = help: assign this const to a local or static variable, and use the variable here
145
146 error: a const item with interior mutability should not be borrowed
147    --> $DIR/non_copy_const.rs:107:5
148     |
149 107 |     ATOMIC_USIZE_INIT.store(2, Ordering::SeqCst); //~ ERROR interior mutability
150     |     ^^^^^^^^^^^^^^^^^
151     |
152     = help: assign this const to a local or static variable, and use the variable here
153
154 error: a const item with interior mutability should not be borrowed
155    --> $DIR/non_copy_const.rs:108:16
156     |
157 108 |     assert_eq!(ATOMIC_USIZE_INIT.load(Ordering::SeqCst), 0); //~ ERROR interior mutability
158     |                ^^^^^^^^^^^^^^^^^
159     |
160     = help: assign this const to a local or static variable, and use the variable here
161
162 error: a const item with interior mutability should not be borrowed
163    --> $DIR/non_copy_const.rs:111:22
164     |
165 111 |     let _once_ref = &ONCE_INIT; //~ ERROR interior mutability
166     |                      ^^^^^^^^^
167     |
168     = help: assign this const to a local or static variable, and use the variable here
169
170 error: a const item with interior mutability should not be borrowed
171    --> $DIR/non_copy_const.rs:112:25
172     |
173 112 |     let _once_ref_2 = &&ONCE_INIT; //~ ERROR interior mutability
174     |                         ^^^^^^^^^
175     |
176     = help: assign this const to a local or static variable, and use the variable here
177
178 error: a const item with interior mutability should not be borrowed
179    --> $DIR/non_copy_const.rs:113:27
180     |
181 113 |     let _once_ref_4 = &&&&ONCE_INIT; //~ ERROR interior mutability
182     |                           ^^^^^^^^^
183     |
184     = help: assign this const to a local or static variable, and use the variable here
185
186 error: a const item with interior mutability should not be borrowed
187    --> $DIR/non_copy_const.rs:114:26
188     |
189 114 |     let _once_mut = &mut ONCE_INIT; //~ ERROR interior mutability
190     |                          ^^^^^^^^^
191     |
192     = help: assign this const to a local or static variable, and use the variable here
193
194 error: a const item with interior mutability should not be borrowed
195    --> $DIR/non_copy_const.rs:125:14
196     |
197 125 |     let _ = &ATOMIC_TUPLE; //~ ERROR interior mutability
198     |              ^^^^^^^^^^^^
199     |
200     = help: assign this const to a local or static variable, and use the variable here
201
202 error: a const item with interior mutability should not be borrowed
203    --> $DIR/non_copy_const.rs:126:14
204     |
205 126 |     let _ = &ATOMIC_TUPLE.0; //~ ERROR interior mutability
206     |              ^^^^^^^^^^^^
207     |
208     = help: assign this const to a local or static variable, and use the variable here
209
210 error: a const item with interior mutability should not be borrowed
211    --> $DIR/non_copy_const.rs:127:19
212     |
213 127 |     let _ = &(&&&&ATOMIC_TUPLE).0; //~ ERROR interior mutability
214     |                   ^^^^^^^^^^^^
215     |
216     = help: assign this const to a local or static variable, and use the variable here
217
218 error: a const item with interior mutability should not be borrowed
219    --> $DIR/non_copy_const.rs:128:14
220     |
221 128 |     let _ = &ATOMIC_TUPLE.0[0]; //~ ERROR interior mutability
222     |              ^^^^^^^^^^^^
223     |
224     = help: assign this const to a local or static variable, and use the variable here
225
226 error: a const item with interior mutability should not be borrowed
227    --> $DIR/non_copy_const.rs:129:13
228     |
229 129 |     let _ = ATOMIC_TUPLE.0[0].load(Ordering::SeqCst); //~ ERROR interior mutability
230     |             ^^^^^^^^^^^^
231     |
232     = help: assign this const to a local or static variable, and use the variable here
233
234 error: a const item with interior mutability should not be borrowed
235    --> $DIR/non_copy_const.rs:135:13
236     |
237 135 |     let _ = ATOMIC_TUPLE.0[0]; //~ ERROR interior mutability
238     |             ^^^^^^^^^^^^
239     |
240     = help: assign this const to a local or static variable, and use the variable here
241
242 error: a const item with interior mutability should not be borrowed
243    --> $DIR/non_copy_const.rs:140:5
244     |
245 140 |     CELL.set(2); //~ ERROR interior mutability
246     |     ^^^^
247     |
248     = help: assign this const to a local or static variable, and use the variable here
249
250 error: a const item with interior mutability should not be borrowed
251    --> $DIR/non_copy_const.rs:141:16
252     |
253 141 |     assert_eq!(CELL.get(), 6); //~ ERROR interior mutability
254     |                ^^^^
255     |
256     = help: assign this const to a local or static variable, and use the variable here
257
258 error: a const item with interior mutability should not be borrowed
259    --> $DIR/non_copy_const.rs:154:5
260     |
261 154 |     u64::ATOMIC.store(5, Ordering::SeqCst); //~ ERROR interior mutability
262     |     ^^^^^^^^^^^
263     |
264     = help: assign this const to a local or static variable, and use the variable here
265
266 error: a const item with interior mutability should not be borrowed
267    --> $DIR/non_copy_const.rs:155:16
268     |
269 155 |     assert_eq!(u64::ATOMIC.load(Ordering::SeqCst), 9); //~ ERROR interior mutability
270     |                ^^^^^^^^^^^
271     |
272     = help: assign this const to a local or static variable, and use the variable here
273
274 error: aborting due to 31 previous errors
275