mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 03:09:54 +00:00
12 lines
163 B
Rust
12 lines
163 B
Rust
macro_rules! m {
|
|
() => {
|
|
let //~ ERROR macro expansion ignores keyword `let` and any tokens following
|
|
};
|
|
}
|
|
|
|
extern "C" {
|
|
m!();
|
|
}
|
|
|
|
fn main() {}
|