about summary refs log tree commit diff
path: root/tests/ui/cfg/cfg-family.rs
blob: a13ae7f9616bf48c6bf7139bbafe4428d88923a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ build-pass
//@ ignore-wasm32 no bare family
//@ ignore-sgx

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

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