rust-clippy/tests/ui/ptr_offset_with_cast.stderr

17 lines
623 B
Text
Raw Normal View History

error: use of `offset` with a `usize` casted to an `isize`
--> $DIR/ptr_offset_with_cast.rs:12:9
|
2018-12-27 15:57:55 +00:00
LL | ptr.offset(offset_usize as isize);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.add(offset_usize)`
|
2018-08-31 07:38:27 +00:00
= note: `-D clippy::ptr-offset-with-cast` implied by `-D warnings`
2018-08-29 12:40:00 +00:00
error: use of `wrapping_offset` with a `usize` casted to an `isize`
--> $DIR/ptr_offset_with_cast.rs:16:9
2018-08-29 12:40:00 +00:00
|
2018-12-27 15:57:55 +00:00
LL | ptr.wrapping_offset(offset_usize as isize);
2018-08-29 12:40:00 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.wrapping_add(offset_usize)`
error: aborting due to 2 previous errors