rust/tests/ui/cfg/cfg-family.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
163 B
Rust
Raw Normal View History

//@ build-pass
//@ pretty-expanded FIXME #23616
//@ ignore-wasm32 no bare family
2019-05-07 19:34:46 +00:00
//@ ignore-sgx
#[cfg(windows)]
pub fn main() {
}
#[cfg(unix)]
pub fn main() {
}