mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
18 lines
188 B
Rust
18 lines
188 B
Rust
//@ run-pass
|
|
|
|
macro_rules! foo2 {
|
|
() => {
|
|
"foo"
|
|
}
|
|
}
|
|
|
|
macro_rules! foo {
|
|
() => {
|
|
foo2!()
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(concat!(foo!(), "bar"), "foobar")
|
|
}
|