blob: 4d3d139deda30eb7e35388f855592b1217543a89 [file] [log] [blame]
//@ check-pass
//@ compile-flags: -Zunpretty=expanded,hygiene
// Don't break whenever Symbol numbering changes
//@ normalize-stdout: "\d+#" -> "0#"
// minimal junk
#![feature(no_core)]
#![no_core]
macro_rules! foo {
($x: ident) => { y + $x }
}
fn bar() {
let x = 1;
foo!(x)
}
fn y() {}