mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-17 10:18:20 +00:00
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() {}
|