mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
16 lines
623 B
Text
16 lines
623 B
Text
error: use of `offset` with a `usize` casted to an `isize`
|
|
--> $DIR/ptr_offset_with_cast.rs:12:9
|
|
|
|
|
LL | ptr.offset(offset_usize as isize);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.add(offset_usize)`
|
|
|
|
|
= note: `-D clippy::ptr-offset-with-cast` implied by `-D warnings`
|
|
|
|
error: use of `wrapping_offset` with a `usize` casted to an `isize`
|
|
--> $DIR/ptr_offset_with_cast.rs:16:9
|
|
|
|
|
LL | ptr.wrapping_offset(offset_usize as isize);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.wrapping_add(offset_usize)`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|