about summary refs log tree commit diff
path: root/tests/ui/macros/issue-54441.rs
blob: 37ab4e636475b67e4df1b705f62097f8fd866839 (plain)
1
2
3
4
5
6
7
8
9
10
11
macro_rules! m {
    () => {
        let //~ ERROR macro expansion ignores keyword `let` and any tokens following
    };
}

extern "C" {
    m!();
}

fn main() {}