// run-pass #![deny(warnings)] fn foo(_f: F) { } fn main() { let mut var = Vec::new(); foo(move|| { var.push(1); }); }