Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
macros
/
cfg_attr-expr.rs
blob: 1dab2cae59fa723e3ff53e55148ff76842a9ee6c [
file
]
macro_rules
!
foo
{
(
$e
:
expr
)
=>
{
#[
cfg_attr
(
true
,
$e
)]
//~^ ERROR expected identifier, found metavariable
fn
foo
()
{}
}
}
foo
!(
inline
);
fn
main
()
{}