]> git.lizzy.rs Git - rust.git/blob - tests/ui/non_copy_const.stderr
Merge pull request #3265 from mikerite/fix-export
[rust.git] / tests / ui / non_copy_const.stderr
1 error: a const item should never be interior mutable
2   --> $DIR/non_copy_const.rs:22:1
3    |
4 22 | 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:23:1
13    |
14 23 | 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:24:1
21    |
22 24 | 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:28:42
29    |
30 28 |     ($name:ident: $ty:ty = $e:expr) => { const $name: $ty = $e; };
31    |                                          ^^^^^^^^^^^^^^^^^^^^^^
32 29 | }
33 30 | 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:51:5
38    |
39 51 |     const ATOMIC: AtomicUsize; //~ ERROR interior mutable
40    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
41
42 error: a const item should never be interior mutable
43   --> $DIR/non_copy_const.rs:55:5
44    |
45 55 |     const INPUT: T;
46    |     ^^^^^^^^^^^^^^^
47    |
48 help: consider requiring `T` to be `Copy`
49   --> $DIR/non_copy_const.rs:55:18
50    |
51 55 |     const INPUT: T;
52    |                  ^
53
54 error: a const item should never be interior mutable
55   --> $DIR/non_copy_const.rs:58:5
56    |
57 58 |     const ASSOC: Self::NonCopyType;
58    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
59    |
60 help: consider requiring `<Self as Trait<T>>::NonCopyType` to be `Copy`
61   --> $DIR/non_copy_const.rs:58:18
62    |
63 58 |     const ASSOC: Self::NonCopyType;
64    |                  ^^^^^^^^^^^^^^^^^
65
66 error: a const item should never be interior mutable
67   --> $DIR/non_copy_const.rs:62:5
68    |
69 62 |     const AN_INPUT: T = Self::INPUT;
70    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
71    |
72 help: consider requiring `T` to be `Copy`
73   --> $DIR/non_copy_const.rs:62:21
74    |
75 62 |     const AN_INPUT: T = Self::INPUT;
76    |                     ^
77
78 error: a const item should never be interior mutable
79   --> $DIR/non_copy_const.rs:28:42
80    |
81 28 |     ($name:ident: $ty:ty = $e:expr) => { const $name: $ty = $e; };
82    |                                          ^^^^^^^^^^^^^^^^^^^^^^
83 ...
84 65 |     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:71:5
89    |
90 71 |     const SELF_2: Self;
91    |     ^^^^^^^^^^^^^^^^^^^
92    |
93 help: consider requiring `Self` to be `Copy`
94   --> $DIR/non_copy_const.rs:71:19
95    |
96 71 |     const SELF_2: Self;
97    |                   ^^^^
98
99 error: a const item should never be interior mutable
100   --> $DIR/non_copy_const.rs:92:5
101    |
102 92 |     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:95:5
107    |
108 95 |     const U_SELF: U = U::SELF_2;
109    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
110    |
111 help: consider requiring `U` to be `Copy`
112   --> $DIR/non_copy_const.rs:95:19
113    |
114 95 |     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:98:5
119    |
120 98 |     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:98:20
125    |
126 98 |     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:105:5
131     |
132 105 |     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:106:16
140     |
141 106 |     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:108:5
148     |
149 108 |     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:109:16
156     |
157 109 |     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:112:22
164     |
165 112 |     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:113:25
172     |
173 113 |     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:114:27
180     |
181 114 |     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:115:26
188     |
189 115 |     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:126:14
196     |
197 126 |     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:127:14
204     |
205 127 |     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:128:19
212     |
213 128 |     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:129:14
220     |
221 129 |     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:130:13
228     |
229 130 |     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:136:13
236     |
237 136 |     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:141:5
244     |
245 141 |     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:142:16
252     |
253 142 |     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:155:5
260     |
261 155 |     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:156:16
268     |
269 156 |     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