summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/ptr_cast_constness.stderr
blob: 2c52ebd3464d6159947eae849e4f72e4e6b350cc (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
error: `as` casting between raw pointers while changing only its constness
  --> tests/ui/ptr_cast_constness.rs:15:41
   |
LL |     let _: &mut T = std::mem::transmute(p as *mut T);
   |                                         ^^^^^^^^^^^ help: try `pointer::cast_mut`, a safer alternative: `p.cast_mut()`
   |
   = note: `-D clippy::ptr-cast-constness` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::ptr_cast_constness)]`

error: `as` casting between raw pointers while changing only its constness
  --> tests/ui/ptr_cast_constness.rs:16:19
   |
LL |     let _ = &mut *(p as *mut T);
   |                   ^^^^^^^^^^^^^ help: try `pointer::cast_mut`, a safer alternative: `p.cast_mut()`

error: `as` casting between raw pointers while changing only its constness
  --> tests/ui/ptr_cast_constness.rs:31:17
   |
LL |         let _ = *ptr_ptr as *mut u32;
   |                 ^^^^^^^^^^^^^^^^^^^^ help: try `pointer::cast_mut`, a safer alternative: `(*ptr_ptr).cast_mut()`

error: `as` casting between raw pointers while changing only its constness
  --> tests/ui/ptr_cast_constness.rs:34:13
   |
LL |     let _ = ptr as *mut u32;
   |             ^^^^^^^^^^^^^^^ help: try `pointer::cast_mut`, a safer alternative: `ptr.cast_mut()`

error: `as` casting between raw pointers while changing only its constness
  --> tests/ui/ptr_cast_constness.rs:35:13
   |
LL |     let _ = mut_ptr as *const u32;
   |             ^^^^^^^^^^^^^^^^^^^^^ help: try `pointer::cast_const`, a safer alternative: `mut_ptr.cast_const()`

error: `as` casting between raw pointers while changing only its constness
  --> tests/ui/ptr_cast_constness.rs:68:13
   |
LL |     let _ = ptr as *mut u32;
   |             ^^^^^^^^^^^^^^^ help: try `pointer::cast_mut`, a safer alternative: `ptr.cast_mut()`

error: `as` casting between raw pointers while changing only its constness
  --> tests/ui/ptr_cast_constness.rs:69:13
   |
LL |     let _ = mut_ptr as *const u32;
   |             ^^^^^^^^^^^^^^^^^^^^^ help: try `pointer::cast_const`, a safer alternative: `mut_ptr.cast_const()`

error: aborting due to 7 previous errors