Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
macro_rules! foo {
($d:expr) => {{
fn bar(d: u8) { }
bar(&mut $d);
//~^ ERROR mismatched types
//~| expected `u8`, found `&mut u8`
}}
}
fn main() {
foo!(0u8);
//~^ in this expansion of foo!