2025-07-13 16:39:45 -04:00
|
|
|
// https://github.com/rust-lang/rust/issues/9737
|
2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(unused_variables)]
|
2015-01-02 14:44:21 -08:00
|
|
|
macro_rules! f {
|
|
|
|
|
(v: $x:expr) => ( println!("{}", $x) )
|
|
|
|
|
}
|
2013-11-22 13:43:22 -08:00
|
|
|
|
|
|
|
|
fn main () {
|
|
|
|
|
let v = 5;
|
|
|
|
|
f!(v: 3);
|
|
|
|
|
}
|