2018-08-27 08:49:54 -05:00
|
|
|
error: use of `offset` with a `usize` casted to an `isize`
|
|
|
|
--> $DIR/ptr_offset_with_cast.rs:10:9
|
|
|
|
|
|
|
|
|
10 | ptr.offset(offset_usize as isize);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.add(offset_usize)`
|
|
|
|
|
|
|
|
|
= note: `-D ptr-offset-with-cast` implied by `-D warnings`
|
|
|
|
|
2018-08-29 07:40:00 -05:00
|
|
|
error: use of `wrapping_offset` with a `usize` casted to an `isize`
|
|
|
|
--> $DIR/ptr_offset_with_cast.rs:14:9
|
|
|
|
|
|
|
|
|
14 | ptr.wrapping_offset(offset_usize as isize);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.wrapping_add(offset_usize)`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-08-27 08:49:54 -05:00
|
|
|
|