Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
parser
/
macro
/
issue-33569.rs
blob: 7288fa858dbee4168b5dd4a1300648c6597353d4 [
file
] [
log
] [
blame
]
macro_rules
!
foo
{
{
$
+
}
=>
{
//~ ERROR expected identifier, found `+`
//~^ ERROR missing fragment specifier
$
(
x
)(
y
)
//~ ERROR expected one of: `*`, `+`, or `?`
}
}
foo
!();
//~ ERROR unexpected end
fn
main
()
{}