Sign in
rust
/
rustfmt
/
bedef9bd13c2f432584064b51a0d619b7974eb08
/
.
/
tests
/
source
/
cfg_match
/
lib.rs
blob: 2f0accac7d77a68e1f5569008cfa98f24268014d [
file
] [
log
] [
blame
]
#![
feature
(
cfg_match
)]
std
::
cfg_match
!
{
test
=>
{
mod
format_me_please_1
;
}
target_family
=
"unix"
=>
{
mod
format_me_please_2
;
}
cfg
(
target_pointer_width
=
"32"
)
=>
{
mod
format_me_please_3
;
}
_
=>
{
mod
format_me_please_4
;
}
}