rust/tests/ui/macros/issue-26094.rs
2023-04-20 15:06:17 -03:00

13 lines
293 B
Rust

macro_rules! some_macro {
($other: expr) => {{
$other(None) //~ NOTE unexpected argument of type `Option<_>`
}};
}
fn some_function() {} //~ NOTE defined here
fn main() {
some_macro!(some_function);
//~^ ERROR function takes 0 arguments but 1 argument was supplied
}