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