]> git.lizzy.rs Git - rust.git/blob - tests/ui/ptr_offset_with_cast.stderr
Adapt the *.stderr files of the ui-tests to the tool_lints
[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:10:9
3    |
4 10 |         ptr.offset(offset_usize as isize);
5    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr.add(offset_usize)`
6    |
7    = note: `-D 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:14:9
11    |
12 14 |         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