2020-09-02 10:40:56 +03:00
|
|
|
error[E0277]: a value of type `Vec<f64>` cannot be built from an iterator over elements of type `&f64`
|
2022-12-11 14:49:50 -08:00
|
|
|
--> $DIR/issue-66923-show-error-for-correct-call.rs:8:39
|
2019-12-03 08:20:17 +01:00
|
|
|
|
|
|
|
|
LL | let x2: Vec<f64> = x1.into_iter().collect();
|
2022-12-11 14:49:50 -08:00
|
|
|
| ^^^^^^^ value of type `Vec<f64>` cannot be built from `std::iter::Iterator<Item=&f64>`
|
2019-12-03 08:20:17 +01:00
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= help: the trait `FromIterator<&f64>` is not implemented for `Vec<f64>`
|
2021-12-13 20:56:40 +00:00
|
|
|
= help: the trait `FromIterator<T>` is implemented for `Vec<T>`
|
2022-12-06 12:08:17 -08:00
|
|
|
note: the method call chain might not have had the expected associated types
|
2022-12-06 17:34:24 +00:00
|
|
|
--> $DIR/issue-66923-show-error-for-correct-call.rs:8:27
|
|
|
|
|
|
2022-12-07 11:11:06 -08:00
|
|
|
LL | let x1: &[f64] = &v;
|
|
|
|
| -- this expression has type `&Vec<f64>`
|
2022-12-06 17:34:24 +00:00
|
|
|
LL | let x2: Vec<f64> = x1.into_iter().collect();
|
2022-12-11 11:38:43 -08:00
|
|
|
| ^^^^^^^^^^^ `Iterator::Item` is `&f64` here
|
2021-10-05 23:04:09 +00:00
|
|
|
note: required by a bound in `collect`
|
|
|
|
--> $SRC_DIR/core/src/iter/traits/iterator.rs:LL:COL
|
2019-12-03 08:20:17 +01:00
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error[E0277]: a value of type `Vec<f64>` cannot be built from an iterator over elements of type `&f64`
|
2022-12-11 14:49:50 -08:00
|
|
|
--> $DIR/issue-66923-show-error-for-correct-call.rs:12:29
|
2019-12-03 08:20:17 +01:00
|
|
|
|
|
|
|
|
LL | let x3 = x1.into_iter().collect::<Vec<f64>>();
|
2022-12-11 14:49:50 -08:00
|
|
|
| ^^^^^^^ value of type `Vec<f64>` cannot be built from `std::iter::Iterator<Item=&f64>`
|
2019-12-03 08:20:17 +01:00
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= help: the trait `FromIterator<&f64>` is not implemented for `Vec<f64>`
|
2021-12-13 20:56:40 +00:00
|
|
|
= help: the trait `FromIterator<T>` is implemented for `Vec<T>`
|
2022-12-06 12:08:17 -08:00
|
|
|
note: the method call chain might not have had the expected associated types
|
2022-12-06 17:34:24 +00:00
|
|
|
--> $DIR/issue-66923-show-error-for-correct-call.rs:12:17
|
|
|
|
|
|
2022-12-07 11:11:06 -08:00
|
|
|
LL | let x1: &[f64] = &v;
|
|
|
|
| -- this expression has type `&Vec<f64>`
|
|
|
|
...
|
2022-12-06 17:34:24 +00:00
|
|
|
LL | let x3 = x1.into_iter().collect::<Vec<f64>>();
|
2022-12-11 11:38:43 -08:00
|
|
|
| ^^^^^^^^^^^ `Iterator::Item` is `&f64` here
|
2021-10-05 23:04:09 +00:00
|
|
|
note: required by a bound in `collect`
|
|
|
|
--> $SRC_DIR/core/src/iter/traits/iterator.rs:LL:COL
|
2019-12-03 08:20:17 +01:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|