rust/tests/ui/ptr_offset_with_cast.stderr

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