]> git.lizzy.rs Git - rust.git/blob - src/test/ui/iterators/collect-into-array.stderr
7fe9707e6d232b4e4323f95320c591f18755f90c
[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:31
3    |
4 LL |     let whatever: [u32; 10] = (0..10).collect();
5    |                               ^^^^^^^ ------- required by a bound introduced by this call
6    |                               |
7    |                               try collecting into a `Vec<{integer}>`, then using `.try_into()`
8    |
9    = help: the trait `FromIterator<{integer}>` is not implemented for `[u32; 10]`
10 note: required by a bound in `collect`
11   --> $SRC_DIR/core/src/iter/traits/iterator.rs:LL:COL
12    |
13 LL |     fn collect<B: FromIterator<Self::Item>>(self) -> B
14    |                   ^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `collect`
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0277`.