2023-12-13 19:46:03 -06:00
|
|
|
//@ 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 {
|
2024-04-17 02:08:58 -05:00
|
|
|
//~^ ERROR macro expansion ignores `{` and any tokens following
|
2023-12-13 19:46:03 -06:00
|
|
|
//~| ERROR cannot find macro `macro_rules` in this scope
|
2024-07-09 21:59:33 -05:00
|
|
|
//~| put a macro name here
|
2023-12-13 19:46:03 -06:00
|
|
|
() => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
make_macro!((meow));
|
2023-12-26 07:30:31 -06:00
|
|
|
//~^ ERROR macros that expand to items must be delimited with braces or followed by a semicolon
|