summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/issue-49579.rs
blob: 98de014e90beabcd0fadeab845580aaaaa5605b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// check-pass

fn fibs(n: u32) -> impl Iterator<Item=u128> {
    (0 .. n)
    .scan((0, 1), |st, _| {
        *st = (st.1, st.0 + st.1);
        Some(*st)
    })
    .map(&|(f, _)| f)
}

fn main() {
    println!("{:?}", fibs(10).collect::<Vec<_>>());
}