@@ -723,7 +723,7 @@ error[E0308]: mismatched types
723
723
|
724
724
272 | foo::<f64>(x_u32);
725
725
| ^^^^^ expected f64, found u32
726
- help: you can cast an `u32` to `f64`, producing the floating point representation of the integer, rounded if necessary
726
+ help: you can cast an `u32` to `f64`, producing the floating point representation of the integer
727
727
|
728
728
272 | foo::<f64>(x_u32.into());
729
729
| ^^^^^^^^^^^^
@@ -733,7 +733,7 @@ error[E0308]: mismatched types
733
733
|
734
734
274 | foo::<f64>(x_u16);
735
735
| ^^^^^ expected f64, found u16
736
- help: you can cast an `u16` to `f64`, producing the floating point representation of the integer, rounded if necessary
736
+ help: you can cast an `u16` to `f64`, producing the floating point representation of the integer
737
737
|
738
738
274 | foo::<f64>(x_u16.into());
739
739
| ^^^^^^^^^^^^
@@ -743,7 +743,7 @@ error[E0308]: mismatched types
743
743
|
744
744
276 | foo::<f64>(x_u8);
745
745
| ^^^^ expected f64, found u8
746
- help: you can cast an `u8` to `f64`, producing the floating point representation of the integer, rounded if necessary
746
+ help: you can cast an `u8` to `f64`, producing the floating point representation of the integer
747
747
|
748
748
276 | foo::<f64>(x_u8.into());
749
749
| ^^^^^^^^^^^
@@ -765,7 +765,7 @@ error[E0308]: mismatched types
765
765
|
766
766
282 | foo::<f64>(x_i32);
767
767
| ^^^^^ expected f64, found i32
768
- help: you can cast an `i32` to `f64`, producing the floating point representation of the integer, rounded if necessary
768
+ help: you can cast an `i32` to `f64`, producing the floating point representation of the integer
769
769
|
770
770
282 | foo::<f64>(x_i32.into());
771
771
| ^^^^^^^^^^^^
@@ -775,7 +775,7 @@ error[E0308]: mismatched types
775
775
|
776
776
284 | foo::<f64>(x_i16);
777
777
| ^^^^^ expected f64, found i16
778
- help: you can cast an `i16` to `f64`, producing the floating point representation of the integer, rounded if necessary
778
+ help: you can cast an `i16` to `f64`, producing the floating point representation of the integer
779
779
|
780
780
284 | foo::<f64>(x_i16.into());
781
781
| ^^^^^^^^^^^^
@@ -785,7 +785,7 @@ error[E0308]: mismatched types
785
785
|
786
786
286 | foo::<f64>(x_i8);
787
787
| ^^^^ expected f64, found i8
788
- help: you can cast an `i8` to `f64`, producing the floating point representation of the integer, rounded if necessary
788
+ help: you can cast an `i8` to `f64`, producing the floating point representation of the integer
789
789
|
790
790
286 | foo::<f64>(x_i8.into());
791
791
| ^^^^^^^^^^^
@@ -823,7 +823,7 @@ error[E0308]: mismatched types
823
823
|
824
824
298 | foo::<f32>(x_u16);
825
825
| ^^^^^ expected f32, found u16
826
- help: you can cast an `u16` to `f32`, producing the floating point representation of the integer, rounded if necessary
826
+ help: you can cast an `u16` to `f32`, producing the floating point representation of the integer
827
827
|
828
828
298 | foo::<f32>(x_u16.into());
829
829
| ^^^^^^^^^^^^
@@ -833,7 +833,7 @@ error[E0308]: mismatched types
833
833
|
834
834
300 | foo::<f32>(x_u8);
835
835
| ^^^^ expected f32, found u8
836
- help: you can cast an `u8` to `f32`, producing the floating point representation of the integer, rounded if necessary
836
+ help: you can cast an `u8` to `f32`, producing the floating point representation of the integer
837
837
|
838
838
300 | foo::<f32>(x_u8.into());
839
839
| ^^^^^^^^^^^
@@ -861,7 +861,7 @@ error[E0308]: mismatched types
861
861
|
862
862
308 | foo::<f32>(x_i16);
863
863
| ^^^^^ expected f32, found i16
864
- help: you can cast an `i16` to `f32`, producing the floating point representation of the integer, rounded if necessary
864
+ help: you can cast an `i16` to `f32`, producing the floating point representation of the integer
865
865
|
866
866
308 | foo::<f32>(x_i16.into());
867
867
| ^^^^^^^^^^^^
@@ -871,7 +871,7 @@ error[E0308]: mismatched types
871
871
|
872
872
310 | foo::<f32>(x_i8);
873
873
| ^^^^ expected f32, found i8
874
- help: you can cast an `i8` to `f32`, producing the floating point representation of the integer, rounded if necessary
874
+ help: you can cast an `i8` to `f32`, producing the floating point representation of the integer
875
875
|
876
876
310 | foo::<f32>(x_i8.into());
877
877
| ^^^^^^^^^^^
0 commit comments