1 2 3 4 5 6
// run-pass struct Parser<'a>(Box<dyn FnMut(Parser) + 'a>); fn main() { let _x = Parser(Box::new(|_|{})); }