blob: e13d8e1fc849e385b4edda922b0c55f6acb524fa [file] [log] [blame]
// run-pass
macro_rules! foo2 {
() => {
"foo"
}
}
macro_rules! foo {
() => {
foo2!()
}
}
fn main() {
assert_eq!(concat!(foo!(), "bar"), "foobar")
}