Sign in
rust
/
rust
/
d0bd4df3aa09b3e01161beaea5ba1b44c3c8a0bd
/
.
/
tests
/
ui
/
macros
/
macro-error.rs
blob: 4984b92911efc478616e3efe2ff8b308055fc68d [
file
]
macro_rules
!
foo
{
(
$a
:
expr
)
=>
a
;
//~ ERROR macro rhs must be delimited
}
fn
main
()
{
foo
!(
0
);
// Check that we report errors at macro definition, not expansion.
let
_
:
cfg
!(
FALSE
)
=
();
//~ ERROR non-type macro in type position
}