2018-08-27 13:49:54 +00:00
|
|
|
error: use of `offset` with a `usize` casted to an `isize`
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/ptr_offset_with_cast.rs:13:17
|
2018-08-27 13:49:54 +00:00
|
|
|
|
|
2020-05-28 13:45:24 +00:00
|
|
|
LL | let _ = ptr.offset(offset_usize as isize);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.add(offset_usize)`
|
2018-08-27 13:49:54 +00:00
|
|
|
|
|
2018-08-31 07:38:27 +00:00
|
|
|
= note: `-D clippy::ptr-offset-with-cast` implied by `-D warnings`
|
2018-08-27 13:49:54 +00:00
|
|
|
|
2018-08-29 12:40:00 +00:00
|
|
|
error: use of `wrapping_offset` with a `usize` casted to an `isize`
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/ptr_offset_with_cast.rs:17:17
|
2018-08-29 12:40:00 +00:00
|
|
|
|
|
2020-05-28 13:45:24 +00:00
|
|
|
LL | let _ = ptr.wrapping_offset(offset_usize as isize);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.wrapping_add(offset_usize)`
|
2018-08-29 12:40:00 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-08-27 13:49:54 +00:00
|
|
|
|