2025-07-13 16:56:31 -04:00
|
|
|
// https://github.com/rust-lang/rust/issues/7970
|
2016-09-29 17:26:54 +08:00
|
|
|
macro_rules! one_arg_macro {
|
2025-07-13 16:56:31 -04:00
|
|
|
($fmt:expr) => {
|
|
|
|
|
print!(concat!($fmt, "\n"))
|
|
|
|
|
};
|
2016-09-29 17:26:54 +08:00
|
|
|
}
|
|
|
|
|
|
2015-08-07 16:36:56 +02:00
|
|
|
fn main() {
|
2016-09-29 17:26:54 +08:00
|
|
|
one_arg_macro!();
|
2015-08-07 16:36:56 +02:00
|
|
|
//~^ ERROR unexpected end of macro invocation
|
|
|
|
|
}
|