1 2 3 4 5 6 7 8 9 10 11
fn cmark_check() { let mut link_err = false; macro_rules! cmark_error { ($bad:expr) => { *$bad = true; }; } cmark_error!(&mut link_err); } pub fn main() {}