Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
cfg
/
cfg-target-family.rs
blob: 0b1c323307a9be738ea0c3b014a0efed2621b9a3 [
file
] [
log
] [
blame
]
//@ build-pass
//@ ignore-sgx
#[
cfg
(
target_family
=
"windows"
)]
pub
fn
main
()
{}
#[
cfg
(
target_family
=
"unix"
)]
pub
fn
main
()
{}
#[
cfg
(
all
(
target_family
=
"wasm"
,
not
(
target_os
=
"emscripten"
)))]
pub
fn
main
()
{}