Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
#![allow(unused_variables)]
macro_rules! f {
(v: $x:expr) => ( println!("{}", $x) )
}
fn main () {
let v = 5;
f!(v: 3);