Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
macro_rules! some_macro {
($other: expr) => ({
$other(None) //~ NOTE argument of type `Option<_>` unexpected
})
}
fn some_function() {} //~ NOTE defined here
fn main() {
some_macro!(some_function);
//~^ ERROR this function takes 0 arguments but 1 argument was supplied
//~| NOTE in this expansion of some_macro!