Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
cfg
/
cfg-target-compact.rs
blob: 7698b36333575a8cfdff83fd3d3cad0ad90e4b07 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
feature
(
cfg_target_compact
)]
#[
cfg
(
target
(
os
=
"linux"
,
pointer_width
=
"64"
))]
pub
fn
main
()
{
}
#[
cfg
(
not
(
target
(
os
=
"linux"
,
pointer_width
=
"64"
)))]
pub
fn
main
()
{
}