]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/zero_offset.stderr
Rollup merge of #102454 - chenyukang:fix-102396-missing-parentheses, r=lcnr
[rust.git] / src / tools / clippy / tests / ui / zero_offset.stderr
1 error: offset calculation on zero-sized value
2   --> $DIR/zero_offset.rs:5:9
3    |
4 LL |         m.offset(0);
5    |         ^^^^^^^^^^^
6    |
7    = note: `#[deny(clippy::zst_offset)]` on by default
8
9 error: offset calculation on zero-sized value
10   --> $DIR/zero_offset.rs:6:9
11    |
12 LL |         m.wrapping_add(0);
13    |         ^^^^^^^^^^^^^^^^^
14
15 error: offset calculation on zero-sized value
16   --> $DIR/zero_offset.rs:7:9
17    |
18 LL |         m.sub(0);
19    |         ^^^^^^^^
20
21 error: offset calculation on zero-sized value
22   --> $DIR/zero_offset.rs:8:9
23    |
24 LL |         m.wrapping_sub(0);
25    |         ^^^^^^^^^^^^^^^^^
26
27 error: offset calculation on zero-sized value
28   --> $DIR/zero_offset.rs:11:9
29    |
30 LL |         c.offset(0);
31    |         ^^^^^^^^^^^
32
33 error: offset calculation on zero-sized value
34   --> $DIR/zero_offset.rs:12:9
35    |
36 LL |         c.wrapping_add(0);
37    |         ^^^^^^^^^^^^^^^^^
38
39 error: offset calculation on zero-sized value
40   --> $DIR/zero_offset.rs:13:9
41    |
42 LL |         c.sub(0);
43    |         ^^^^^^^^
44
45 error: offset calculation on zero-sized value
46   --> $DIR/zero_offset.rs:14:9
47    |
48 LL |         c.wrapping_sub(0);
49    |         ^^^^^^^^^^^^^^^^^
50
51 error: aborting due to 8 previous errors
52