]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cfg/cfg-family.rs
Rollup merge of #105758 - Nilstrieb:typeck-results-mod, r=compiler-errors
[rust.git] / src / test / ui / cfg / cfg-family.rs
1 // build-pass
2 // pretty-expanded FIXME #23616
3 // ignore-wasm32-bare no bare family
4 // ignore-sgx
5
6 #[cfg(windows)]
7 pub fn main() {
8 }
9
10 #[cfg(unix)]
11 pub fn main() {
12 }