mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
488 B
Rust
17 lines
488 B
Rust
// compile-flags: --crate-type lib -O -C debug-assertions=yes
|
|
|
|
// Regression test for issue 118786
|
|
|
|
macro_rules! make_macro {
|
|
($macro_name:tt) => {
|
|
macro_rules! $macro_name {
|
|
//~^ ERROR macros that expand to items must be delimited with braces or followed by a semicolon
|
|
//~| ERROR macro expansion ignores token `{` and any following
|
|
//~| ERROR cannot find macro `macro_rules` in this scope
|
|
() => {}
|
|
}
|
|
}
|
|
}
|
|
|
|
make_macro!((meow));
|