21 lines
276 B
Rust
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() {}
|