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