12 lines
154 B
Rust
12 lines
154 B
Rust
macro_rules! m {
|
|
() => {
|
|
let //~ ERROR macro expansion ignores token `let` and any following
|
|
};
|
|
}
|
|
|
|
extern "C" {
|
|
m!();
|
|
}
|
|
|
|
fn main() {}
|