rust/tests/ui/conditional-compilation/cfg_attr_path.rs
2025-12-10 23:41:19 +00:00

13 lines
347 B
Rust

//@ check-pass
#![deny(unused_attributes)] // c.f #35584
mod auxiliary {
#[cfg_attr(false, path = "nonexistent_file.rs")] pub mod namespaced_enums;
#[cfg_attr(true, path = "namespaced_enums.rs")] pub mod nonexistent_file;
}
fn main() {
let _ = auxiliary::namespaced_enums::Foo::A;
let _ = auxiliary::nonexistent_file::Foo::A;
}