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

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

12 lines
130 B
Rust
Raw Normal View History

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