Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
macros
/
missing-semi.rs
blob: b7e90e9e442733778776ebc9cd2fe56ce4570ef4 [
file
]
#[
allow
(
unused_macros
)]
macro_rules
!
foo
{
()
=>
{
}
()
=>
{
//~^ ERROR expected `;`, found `(`
}
}
fn
main
()
{}