summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/issue-49685.rs
blob: fb328d67b75ab7898d0e1b476651c572e7b9beab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// run-pass
// Regression test for #49685: drop elaboration was not revealing the
// value of `impl Trait` returns, leading to an ICE.

fn main() {
    let _ = Some(())
        .into_iter()
        .flat_map(|_| Some(()).into_iter().flat_map(func));
}

fn func(_: ()) -> impl Iterator<Item = ()> {
    Some(()).into_iter().flat_map(|_| vec![])
}