Sign in
fuchsia
/
third_party
/
rust
/
c38f75c21f016bffbf841ed5abce338f94201bde
/
.
/
tests
/
ui
/
parser
/
macros-no-semicolon-items.rs
blob: 3afc275d61a2bc864fc954d558f5ba7e6106cb54 [
file
] [
log
] [
blame
]
macro_rules
!
foo
()
//~ ERROR semicolon
//~| ERROR unexpected end of macro
macro_rules
!
bar
{
(
$
(
$tokens
:
tt
)*)
=>
{}
}
bar
!(
//~ ERROR semicolon
blah
blah
blah
)
fn
main
()
{
}