rust/tests/ui/impl-trait/fallback.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
176 B
Rust
Raw Normal View History

// check-pass
fn take_edge_counters(
x: &mut Option<Vec<i32>>,
) -> Option<impl Iterator<Item = i32>> {
x.take().map_or(None, |m| Some(m.into_iter()))
}
fn main() {}