mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
46 lines
1.7 KiB
Text
46 lines
1.7 KiB
Text
error: manual slice size calculation
|
|
--> $DIR/manual_slice_size_calculation.rs:16:13
|
|
|
|
|
LL | let _ = s_i32.len() * size_of::<i32>(); // WARNING
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `std::mem::size_of_val(s_i32)`
|
|
|
|
|
= note: `-D clippy::manual-slice-size-calculation` implied by `-D warnings`
|
|
|
|
error: manual slice size calculation
|
|
--> $DIR/manual_slice_size_calculation.rs:17:13
|
|
|
|
|
LL | let _ = size_of::<i32>() * s_i32.len(); // WARNING
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `std::mem::size_of_val(s_i32)`
|
|
|
|
error: manual slice size calculation
|
|
--> $DIR/manual_slice_size_calculation.rs:18:13
|
|
|
|
|
LL | let _ = size_of::<i32>() * s_i32.len() * 5; // WARNING
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `std::mem::size_of_val(s_i32)`
|
|
|
|
error: manual slice size calculation
|
|
--> $DIR/manual_slice_size_calculation.rs:22:13
|
|
|
|
|
LL | let _ = len * size_of::<i32>(); // WARNING
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `std::mem::size_of_val(s_i32)`
|
|
|
|
error: manual slice size calculation
|
|
--> $DIR/manual_slice_size_calculation.rs:23:13
|
|
|
|
|
LL | let _ = s_i32.len() * size; // WARNING
|
|
| ^^^^^^^^^^^^^^^^^^ help: try: `std::mem::size_of_val(s_i32)`
|
|
|
|
error: manual slice size calculation
|
|
--> $DIR/manual_slice_size_calculation.rs:24:13
|
|
|
|
|
LL | let _ = len * size; // WARNING
|
|
| ^^^^^^^^^^ help: try: `std::mem::size_of_val(s_i32)`
|
|
|
|
error: manual slice size calculation
|
|
--> $DIR/manual_slice_size_calculation.rs:26:13
|
|
|
|
|
LL | let _ = external!(&[1u64][..]).len() * size_of::<u64>();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `std::mem::size_of_val(external!(&[1u64][..]))`
|
|
|
|
error: aborting due to 7 previous errors
|
|
|