]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-7970a.rs
Rollup merge of #106752 - sulami:master, r=estebank
[rust.git] / tests / ui / issues / issue-7970a.rs
1 macro_rules! one_arg_macro {
2     ($fmt:expr) => (print!(concat!($fmt, "\n")));
3 }
4
5 fn main() {
6     one_arg_macro!();
7     //~^ ERROR unexpected end of macro invocation
8 }