]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cfg/cfg-target-family.rs
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[rust.git] / src / test / ui / cfg / cfg-target-family.rs
1 // build-pass
2 // ignore-sgx
3
4 // pretty-expanded FIXME #23616
5
6 #[cfg(target_family = "windows")]
7 pub fn main() {}
8
9 #[cfg(target_family = "unix")]
10 pub fn main() {}
11
12 #[cfg(all(target_family = "wasm", not(target_os = "emscripten")))]
13 pub fn main() {}