rust/tests/ui/impl-trait/in-bindings/nesting.rs

8 lines
138 B
Rust
Raw Normal View History

2024-12-11 22:18:39 +00:00
//@ check-pass
#![feature(impl_trait_in_bindings)]
fn main() {
let _: impl IntoIterator<Item = impl Sized> = ["hello", " world"];
}