]> git.lizzy.rs Git - rust.git/blob - src/test/ui/iterators/collect-into-array.rs
Rollup merge of #106043 - c410-f3r:moar-errors, r=petrochenkov
[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 }