summaryrefslogtreecommitdiffstats
path: root/tests/ui/generator/issue-48048.rs
blob: 992bbc97a9f179a586fc0d4c138d28b2c1a7b3e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(generators)]

fn main() {
    let x = (|_| {},);

    || {
        let x = x;

        x.0({ //~ ERROR borrow may still be in use when generator yields
            yield;
        });
    };
}