Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
macros
/
macro-error.rs
blob: 59ed79e91f09b9f4810d46239440b76d9d650500 [
file
] [
log
] [
blame
]
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
!(
foo
)
=
();
//~ ERROR non-type macro in type position
}