rust/tests/ui/macros/macro-outer-attributes.rs
2025-11-27 11:19:00 -05:00

21 lines
411 B
Rust

//@ edition:2015
#![feature(rustc_attrs)]
macro_rules! test { ($nm:ident,
#[$a:meta],
$i:item) => (mod $nm { #[$a] $i }); }
test!(a,
#[cfg(false)],
pub fn bar() { });
test!(b,
#[cfg(not(FALSE))],
pub fn bar() { });
// test1!(#[bar])
#[rustc_dummy]
fn main() {
a::bar(); //~ ERROR cannot find function `bar` in module `a`
b::bar();
}