mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
52 lines
1.2 KiB
Text
52 lines
1.2 KiB
Text
error: offset calculation on zero-sized value
|
|
--> tests/ui/zero_offset.rs:5:9
|
|
|
|
|
LL | m.offset(0);
|
|
| ^^^^^^^^^^^
|
|
|
|
|
= note: `#[deny(clippy::zst_offset)]` on by default
|
|
|
|
error: offset calculation on zero-sized value
|
|
--> tests/ui/zero_offset.rs:8:9
|
|
|
|
|
LL | m.wrapping_add(0);
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: offset calculation on zero-sized value
|
|
--> tests/ui/zero_offset.rs:10:9
|
|
|
|
|
LL | m.sub(0);
|
|
| ^^^^^^^^
|
|
|
|
error: offset calculation on zero-sized value
|
|
--> tests/ui/zero_offset.rs:12:9
|
|
|
|
|
LL | m.wrapping_sub(0);
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: offset calculation on zero-sized value
|
|
--> tests/ui/zero_offset.rs:16:9
|
|
|
|
|
LL | c.offset(0);
|
|
| ^^^^^^^^^^^
|
|
|
|
error: offset calculation on zero-sized value
|
|
--> tests/ui/zero_offset.rs:18:9
|
|
|
|
|
LL | c.wrapping_add(0);
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: offset calculation on zero-sized value
|
|
--> tests/ui/zero_offset.rs:20:9
|
|
|
|
|
LL | c.sub(0);
|
|
| ^^^^^^^^
|
|
|
|
error: offset calculation on zero-sized value
|
|
--> tests/ui/zero_offset.rs:22:9
|
|
|
|
|
LL | c.wrapping_sub(0);
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 8 previous errors
|
|
|