blob: 2742529edd3b317b9fd8a11ac44c64ba9f8f100d [file] [log] [blame] [edit]
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
}