mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
11 lines
201 B
Rust
11 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() {}
|