]> git.lizzy.rs Git - rust.git/blob - src/test/ui/iterators/collect-into-array.stderr
Rollup merge of #96129 - mattheww:2022-04_float_rounding, r=Dylan-DPC
[rust.git] / src / test / ui / iterators / collect-into-array.stderr
1 error[E0277]: an array of type `[u32; 10]` cannot be built directly from an iterator
2   --> $DIR/collect-into-array.rs:3:39
3    |
4 LL |     let whatever: [u32; 10] = (0..10).collect();
5    |                                       ^^^^^^^ try collecting into a `Vec<{integer}>`, then using `.try_into()`
6    |
7    = help: the trait `FromIterator<{integer}>` is not implemented for `[u32; 10]`
8 note: required by a bound in `collect`
9   --> $SRC_DIR/core/src/iter/traits/iterator.rs:LL:COL
10    |
11 LL |     fn collect<B: FromIterator<Self::Item>>(self) -> B
12    |                   ^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `collect`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0277`.