Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
cfg
/
cfg-match-arm.rs
blob: e646a63b8fbf8dcd57ba8f695c796b414a3a575f [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
//@ pretty-expanded FIXME #23616
enum
Foo
{
Bar
,
Baz
,
}
fn
foo
(
f
:
Foo
)
{
match
f
{
Foo
::
Bar
=>
{},
#[
cfg
(
not
(
FALSE
))]
Foo
::
Baz
=>
{},
#[
cfg
(
FALSE
)]
Basdfwe
=>
{}
}
}
pub
fn
main
()
{}