about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/multiple_unsafe_ops_per_block.stderr
blob: 922a464c6b6effbbba0d9763b54e0c0c6e32a94d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
error: this `unsafe` block contains 2 unsafe operations, expected only one
  --> tests/ui/multiple_unsafe_ops_per_block.rs:38:5
   |
LL | /     unsafe {
LL | |
LL | |         STATIC += 1;
LL | |         not_very_safe();
LL | |     }
   | |_____^
   |
note: modification of a mutable static occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:40:9
   |
LL |         STATIC += 1;
   |         ^^^^^^^^^^^
note: unsafe function call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:41:9
   |
LL |         not_very_safe();
   |         ^^^^^^^^^^^^^^^
   = note: `-D clippy::multiple-unsafe-ops-per-block` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::multiple_unsafe_ops_per_block)]`

error: this `unsafe` block contains 2 unsafe operations, expected only one
  --> tests/ui/multiple_unsafe_ops_per_block.rs:48:5
   |
LL | /     unsafe {
LL | |
LL | |         drop(u.u);
LL | |         *raw_ptr();
LL | |     }
   | |_____^
   |
note: union field access occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:50:14
   |
LL |         drop(u.u);
   |              ^^^
note: raw pointer dereference occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:51:9
   |
LL |         *raw_ptr();
   |         ^^^^^^^^^^

error: this `unsafe` block contains 3 unsafe operations, expected only one
  --> tests/ui/multiple_unsafe_ops_per_block.rs:56:5
   |
LL | /     unsafe {
LL | |
LL | |         asm!("nop");
LL | |         sample.not_very_safe();
LL | |         STATIC = 0;
LL | |     }
   | |_____^
   |
note: inline assembly used here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:58:9
   |
LL |         asm!("nop");
   |         ^^^^^^^^^^^
note: unsafe method call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:59:9
   |
LL |         sample.not_very_safe();
   |         ^^^^^^^^^^^^^^^^^^^^^^
note: modification of a mutable static occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:60:9
   |
LL |         STATIC = 0;
   |         ^^^^^^^^^^

error: this `unsafe` block contains 6 unsafe operations, expected only one
  --> tests/ui/multiple_unsafe_ops_per_block.rs:66:5
   |
LL | /     unsafe {
LL | |
LL | |         drop(u.u);
LL | |         drop(STATIC);
...  |
LL | |         asm!("nop");
LL | |     }
   | |_____^
   |
note: union field access occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:68:14
   |
LL |         drop(u.u);
   |              ^^^
note: access of a mutable static occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:69:14
   |
LL |         drop(STATIC);
   |              ^^^^^^
note: unsafe method call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:70:9
   |
LL |         sample.not_very_safe();
   |         ^^^^^^^^^^^^^^^^^^^^^^
note: unsafe function call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:71:9
   |
LL |         not_very_safe();
   |         ^^^^^^^^^^^^^^^
note: raw pointer dereference occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:72:9
   |
LL |         *raw_ptr();
   |         ^^^^^^^^^^
note: inline assembly used here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:73:9
   |
LL |         asm!("nop");
   |         ^^^^^^^^^^^

error: this `unsafe` block contains 2 unsafe operations, expected only one
  --> tests/ui/multiple_unsafe_ops_per_block.rs:110:9
   |
LL |         unsafe { char::from_u32_unchecked(*ptr.cast::<u32>()) }
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: unsafe function call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:110:18
   |
LL |         unsafe { char::from_u32_unchecked(*ptr.cast::<u32>()) }
   |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: raw pointer dereference occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:110:43
   |
LL |         unsafe { char::from_u32_unchecked(*ptr.cast::<u32>()) }
   |                                           ^^^^^^^^^^^^^^^^^^

error: this `unsafe` block contains 2 unsafe operations, expected only one
  --> tests/ui/multiple_unsafe_ops_per_block.rs:131:9
   |
LL | /         unsafe {
LL | |
LL | |             x();
LL | |             x();
LL | |         }
   | |_________^
   |
note: unsafe function call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:133:13
   |
LL |             x();
   |             ^^^
note: unsafe function call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:134:13
   |
LL |             x();
   |             ^^^

error: this `unsafe` block contains 2 unsafe operations, expected only one
  --> tests/ui/multiple_unsafe_ops_per_block.rs:143:13
   |
LL | /             unsafe {
LL | |
LL | |                 T::X();
LL | |                 T::X();
LL | |             }
   | |_____________^
   |
note: unsafe function call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:145:17
   |
LL |                 T::X();
   |                 ^^^^^^
note: unsafe function call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:146:17
   |
LL |                 T::X();
   |                 ^^^^^^

error: this `unsafe` block contains 2 unsafe operations, expected only one
  --> tests/ui/multiple_unsafe_ops_per_block.rs:154:9
   |
LL | /         unsafe {
LL | |
LL | |             x.0();
LL | |             x.0();
LL | |         }
   | |_________^
   |
note: unsafe function call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:156:13
   |
LL |             x.0();
   |             ^^^^^
note: unsafe function call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:157:13
   |
LL |             x.0();
   |             ^^^^^

error: this `unsafe` block contains 2 unsafe operations, expected only one
  --> tests/ui/multiple_unsafe_ops_per_block.rs:184:5
   |
LL | /     unsafe {
LL | |
LL | |         not_very_safe();
LL | |         STATIC += 1;
LL | |         foo().await;
LL | |     }
   | |_____^
   |
note: unsafe function call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:186:9
   |
LL |         not_very_safe();
   |         ^^^^^^^^^^^^^^^
note: modification of a mutable static occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:187:9
   |
LL |         STATIC += 1;
   |         ^^^^^^^^^^^

error: this `unsafe` block contains 2 unsafe operations, expected only one
  --> tests/ui/multiple_unsafe_ops_per_block.rs:199:5
   |
LL | /     unsafe {
LL | |
LL | |         not_very_safe();
LL | |         foo_unchecked().await;
LL | |     }
   | |_____^
   |
note: unsafe function call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:201:9
   |
LL |         not_very_safe();
   |         ^^^^^^^^^^^^^^^
note: unsafe function call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:202:9
   |
LL |         foo_unchecked().await;
   |         ^^^^^^^^^^^^^^^

error: this `unsafe` block contains 2 unsafe operations, expected only one
  --> tests/ui/multiple_unsafe_ops_per_block.rs:206:5
   |
LL | /     unsafe {
LL | |
LL | |         Some(foo_unchecked()).unwrap_unchecked().await;
LL | |     }
   | |_____^
   |
note: unsafe method call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:208:9
   |
LL |         Some(foo_unchecked()).unwrap_unchecked().await;
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: unsafe function call occurs here
  --> tests/ui/multiple_unsafe_ops_per_block.rs:208:14
   |
LL |         Some(foo_unchecked()).unwrap_unchecked().await;
   |              ^^^^^^^^^^^^^^^

error: aborting due to 11 previous errors