]> git.lizzy.rs Git - rust.git/blob - src/test/ui/iterators/collect-into-array.rs
Rollup merge of #100713 - Xiretza:parser-expr-session-diagnostics, r=estebank
[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     //~| NOTE required by a bound introduced by this call
8 }