blob: 181263adcbfa8902f7c610634a7658215951a56a [file] [log] [blame]
#![allow(unused)]
fn f() {
let mut x: Vec<()> = Vec::new();
|| {
|| {
x.push(())
}
//~^^^ ERROR captured variable cannot escape `FnMut` closure body
};
}
fn main() {}