12 lines
201 B
Rust
12 lines
201 B
Rust
fn cmark_check() {
|
|
let mut link_err = false;
|
|
macro_rules! cmark_error {
|
|
($bad:expr) => {
|
|
*$bad = true;
|
|
};
|
|
}
|
|
cmark_error!(&mut link_err);
|
|
}
|
|
|
|
pub fn main() {}
|