1 2 3 4 5 6 7
//@ check-pass #![feature(impl_trait_in_bindings)] fn main() { let _: impl IntoIterator<Item = impl Sized> = ["hello", " world"]; }