blob: 51ff42bcafe5d2b36cc9ea80068117cab1265592 [file] [log] [blame] [edit]
//@ check-pass
#![feature(impl_trait_in_bindings)]
fn main() {
let _: impl IntoIterator<Item = impl Sized> = ["hello", " world"];
}