Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-7970a.rs
blob: dae906410ed6144ccc5d7992b81ed82d6479b7c4 [
file
] [
log
] [
blame
] [
edit
]
macro_rules
!
one_arg_macro
{
(
$fmt
:
expr
)
=>
(
print
!(
concat
!(
$fmt
,
"\n"
)));
}
fn
main
()
{
one_arg_macro
!();
//~^ ERROR unexpected end of macro invocation
}