rust/src/test/ui/impl-trait/issue-42479.rs

18 lines
196 B
Rust
Raw Normal View History

// compile-pass
use std::iter::once;
struct Foo {
x: i32,
}
impl Foo {
fn inside(&self) -> impl Iterator<Item = &i32> {
once(&self.x)
}
}
fn main() {
println!("hi");
}