summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/ptr_offset_with_cast.stderr
blob: fd45224ca067fa3450bc07cd12f5ebef51052495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)`
   |
   = note: `-D clippy::ptr-offset-with-cast` implied by `-D warnings`

error: use of `wrapping_offset` with a `usize` casted to an `isize`
  --> $DIR/ptr_offset_with_cast.rs:16:17
   |
LL |         let _ = ptr.wrapping_offset(offset_usize as isize);
   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.wrapping_add(offset_usize)`

error: aborting due to 2 previous errors