summaryrefslogtreecommitdiffstats
path: root/tests/ui/cfg/cfg-target-family.rs
blob: 5182cdc8940a00961b788873eeca9f7aba8d1017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// build-pass
// ignore-sgx

// pretty-expanded FIXME #23616

#[cfg(target_family = "windows")]
pub fn main() {}

#[cfg(target_family = "unix")]
pub fn main() {}

#[cfg(all(target_family = "wasm", not(target_os = "emscripten")))]
pub fn main() {}