blob: 37ab4e636475b67e4df1b705f62097f8fd866839 [file] [log] [blame]
macro_rules! m {
() => {
let //~ ERROR macro expansion ignores keyword `let` and any tokens following
};
}
extern "C" {
m!();
}
fn main() {}