summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/cast_raw_slice_pointer_cast.fixed
blob: b70c1912951164cd911d6896ceedd2a9c2cd9cff (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
// run-rustfix
#![warn(clippy::cast_slice_from_raw_parts)]

#[allow(unused_imports, unused_unsafe)]
fn main() {
    let mut vec = vec![0u8; 1];
    let ptr: *const u8 = vec.as_ptr();
    let mptr = vec.as_mut_ptr();
    let _: *const [u8] = unsafe { core::ptr::slice_from_raw_parts(ptr, 1) };
    let _: *const [u8] = unsafe { core::ptr::slice_from_raw_parts_mut(mptr, 1) };
    let _: *const [u8] = core::ptr::slice_from_raw_parts(ptr, 1);
    {
        use core::slice;
        let _: *const [u8] = core::ptr::slice_from_raw_parts(ptr, 1);
        use slice as one;
        let _: *const [u8] = core::ptr::slice_from_raw_parts(ptr, 1);
    }
    {
        use std::slice;
        let _: *const [u8] = core::ptr::slice_from_raw_parts(ptr, 1);
        use slice as one;
        let _: *const [u8] = core::ptr::slice_from_raw_parts(ptr, 1);
    }
}