summary refs log tree commit diff
path: root/src/test/ui/generator/borrowing.rs
blob: 88a0cf9a77a54cc6c87a32db0b78a849d5064132 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![feature(generators, generator_trait)]

use std::ops::Generator;

fn main() {
    let _b = {
        let a = 3;
        unsafe { (|| yield &a).resume() }
        //~^ ERROR: `a` does not live long enough
    };

    let _b = {
        let a = 3;
        || {
            yield &a
            //~^ ERROR: `a` does not live long enough
        }
    };
}