blob: 957c2e3f1033d363cfc89c84738d8099ac3fa8f2 [file] [log] [blame]
// https://github.com/rust-lang/rust/issues/9737
//@ run-pass
#![allow(unused_variables)]
macro_rules! f {
(v: $x:expr) => ( println!("{}", $x) )
}
fn main () {
let v = 5;
f!(v: 3);
}