]> git.lizzy.rs Git - rust.git/blob - tests/ui/ptr_offset_with_cast.stderr
iterate List by value
[rust.git] / tests / ui / ptr_offset_with_cast.stderr
1 error: use of `offset` with a `usize` casted to an `isize`
2   --> $DIR/ptr_offset_with_cast.rs:12:9
3    |
4 LL |         ptr.offset(offset_usize as isize);
5    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.add(offset_usize)`
6    |
7    = note: `-D clippy::ptr-offset-with-cast` implied by `-D warnings`
8
9 error: use of `wrapping_offset` with a `usize` casted to an `isize`
10   --> $DIR/ptr_offset_with_cast.rs:16:9
11    |
12 LL |         ptr.wrapping_offset(offset_usize as isize);
13    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.wrapping_add(offset_usize)`
14
15 error: aborting due to 2 previous errors
16