rust/tests/ui/cfg/cfg-match-arm.rs

21 lines
276 B
Rust

//@ 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() {}