summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-6332.rs
blob: 9dc92aa500b2ff795034c6790a6b611777926394 (plain)
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() {}