Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
macros
/
macro-match-nonterminal.rs
blob: 1643cddb192beacb8e5336b874f16083fc8493a8 [
file
] [
log
] [
blame
]
macro_rules
!
test
{
(
$a
,
$b
)
=>
{
//~^ ERROR missing fragment
//~| ERROR missing fragment
()
};
}
fn
main
()
{
test
!()
//~ ERROR unexpected end of macro invocation
}