]> git.lizzy.rs Git - rust.git/blob - tests/ui/iterators/collect-into-array.stderr
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / 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:2: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 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0277`.