blob: 4b6f2c2b3bc7d7d70dbcbef21a934368b6992ee1 [file] [log] [blame]
// run-pass
struct Parser<'a>(Box<dyn FnMut(Parser) + 'a>);
fn main() {
let _x = Parser(Box::new(|_|{}));
}