blob: fe16e29d70f3b4ce58783391bff35c384020e2b5 [file] [log] [blame] [edit]
//@ run-pass
macro_rules! foo {
($y:expr) => ({
$y = 2;
})
}
#[allow(unused_variables)]
#[allow(unused_assignments)]
fn main() {
let mut x = 1;
foo!(x);
}