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