7 lines
134 B
Rust
7 lines
134 B
Rust
macro_rules! m {
|
|
($abi : expr) => { extern $abi } //~ ERROR expected expression, found keyword `extern`
|
|
}
|
|
|
|
fn main() {
|
|
m!(-2)
|
|
}
|