Sign in
rust
/
rust
/
44753d47a5cc6b69eb67ddd206c5c5abfee4e0fa
/
.
/
src
/
tools
/
rustfmt
/
tests
/
source
/
cfg_match
/
lib.rs
blob: 2f0accac7d77a68e1f5569008cfa98f24268014d [
file
]
#![
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
;
}
}