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