summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/manual_slice_size_calculation.stderr
blob: e09d8057a3b98ae166258de59372785e1093af75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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