rust/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`
2018-10-06 18:18:06 +02:00
--> $DIR/ptr_offset_with_cast.rs:20:9
|
2018-10-06 18:18:06 +02:00
20 | ptr.offset(offset_usize as isize);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.add(offset_usize)`
|
2018-08-31 09:38:27 +02:00
= note: `-D clippy::ptr-offset-with-cast` implied by `-D warnings`
2018-08-29 14:40:00 +02:00
error: use of `wrapping_offset` with a `usize` casted to an `isize`
2018-10-06 18:18:06 +02:00
--> $DIR/ptr_offset_with_cast.rs:24:9
2018-08-29 14:40:00 +02:00
|
2018-10-06 18:18:06 +02:00
24 | ptr.wrapping_offset(offset_usize as isize);
2018-08-29 14:40:00 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.wrapping_add(offset_usize)`
error: aborting due to 2 previous errors