mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
21 lines
282 B
Rust
21 lines
282 B
Rust
// Opaque macro can eagerly expand its input without breaking its resolution.
|
|
// Regression test for issue #63685.
|
|
|
|
// check-pass
|
|
|
|
macro_rules! foo {
|
|
() => {
|
|
"foo"
|
|
};
|
|
}
|
|
|
|
macro_rules! bar {
|
|
() => {
|
|
foo!()
|
|
};
|
|
}
|
|
|
|
fn main() {
|
|
format_args!(bar!());
|
|
}
|