rustc/tests/ui/cfg/cfg-family.rs
2025-02-17 11:14:05 +01:00

12 lines
130 B
Rust

//@ build-pass
//@ ignore-wasm32 no bare family
//@ ignore-sgx
#[cfg(windows)]
pub fn main() {
}
#[cfg(unix)]
pub fn main() {
}