Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
macros
/
macro-meta-items-modern.rs
blob: c519403c9c14d797dfc73f2ad15c3a69238b4c64 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
macro_rules
!
check
{
(
$meta
:
meta
)
=>
()
}
check
!(
meta
(
a b c d
));
check
!(
meta
[
a b c d
]);
check
!(
meta
{
a b c d
});
check
!(
meta
);
check
!(
meta
=
0
);
fn
main
()
{}