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