mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
20 lines
463 B
Rust
20 lines
463 B
Rust
// run-rustfix
|
|
|
|
fn main() {
|
|
let vec = vec![b'a', b'b', b'c'];
|
|
let ptr = vec.as_ptr();
|
|
|
|
let offset_u8 = 1_u8;
|
|
let offset_usize = 1_usize;
|
|
let offset_isize = 1_isize;
|
|
|
|
unsafe {
|
|
ptr.add(offset_usize);
|
|
ptr.offset(offset_isize as isize);
|
|
ptr.offset(offset_u8 as isize);
|
|
|
|
ptr.wrapping_add(offset_usize);
|
|
ptr.wrapping_offset(offset_isize as isize);
|
|
ptr.wrapping_offset(offset_u8 as isize);
|
|
}
|
|
}
|