blob: 1dab2cae59fa723e3ff53e55148ff76842a9ee6c [file]
macro_rules! foo {
($e:expr) => {
#[cfg_attr(true, $e)]
//~^ ERROR expected identifier, found metavariable
fn foo() {}
}
}
foo!(inline);
fn main() {}