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