summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-9737.rs
blob: 7d3e05678471eedc0e19205d14f972c3a76bc4d0 (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass
#![allow(unused_variables)]
macro_rules! f {
    (v: $x:expr) => ( println!("{}", $x) )
}

fn main () {
    let v = 5;
    f!(v: 3);
}