Sign in
fuchsia
/
third_party
/
rust
/
4717bdfc1343953b770887460d5822c87e434d97
/
.
/
tests
/
ui
/
cfg
/
cfg-target-family.rs
blob: ab3be302e6400090db17037f66ecc666a7de0dcb [
file
] [
log
] [
blame
]
//@ build-pass
//@ ignore-sgx
//@ pretty-expanded FIXME #23616
#[
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
()
{}