mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
21 lines
273 B
Rust
21 lines
273 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(asdfa))]
|
|
Foo::Baz => {},
|
|
#[cfg(afsd)]
|
|
Basdfwe => {}
|
|
}
|
|
}
|
|
|
|
pub fn main() {}
|