13 lines
167 B
Rust
13 lines
167 B
Rust
macro_rules! m {
|
|
//~^ ERROR missing `fn`, `type`, or `static` for extern-item declaration
|
|
() => {
|
|
let
|
|
};
|
|
}
|
|
|
|
extern "C" {
|
|
m!();
|
|
}
|
|
|
|
fn main() {}
|