summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/issue-42574-diagnostic-in-nested-closure.rs
blob: 0ec0179e846f43ab55263ca696b961049998cfe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
// This test illustrates a case where full NLL (enabled by the feature
// switch below) produces superior diagnostics to the NLL-migrate
// mode.

fn doit(data: &'static mut ()) {
    || doit(data);
    //~^ ERROR lifetime may not live long enough
    //~| ERROR `data` does not live long enough
}

fn main() { }