Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
macros
/
macro-meta-items-modern.rs
blob: c519403c9c14d797dfc73f2ad15c3a69238b4c64 [
file
] [
log
] [
blame
]
//@ 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
()
{}