]> git.lizzy.rs Git - rust.git/blob - src/test/ui/iterators/collect-into-array.rs
Auto merge of #106143 - matthiaskrgr:rollup-3kpy1dc, r=matthiaskrgr
[rust.git] / src / test / ui / iterators / collect-into-array.rs
1 fn main() {
2     let whatever: [u32; 10] = (0..10).collect();
3     //~^ ERROR an array of type `[u32; 10]` cannot be built directly from an iterator
4     //~| NOTE try collecting into a `Vec<{integer}>`, then using `.try_into()`
5     //~| NOTE required by a bound in `collect`
6 }