rust/tests/ui/ptr_offset_with_cast.stderr

17 lines
657 B
Text
Raw Normal View History

error: use of `offset` with a `usize` casted to an `isize`
--> $DIR/ptr_offset_with_cast.rs:12:17
|
LL | let _ = 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`
--> $DIR/ptr_offset_with_cast.rs:16:17
2018-08-29 14:40:00 +02:00
|
LL | let _ = ptr.wrapping_offset(offset_usize as isize);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.wrapping_add(offset_usize)`
2018-08-29 14:40:00 +02:00
error: aborting due to 2 previous errors