mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-24 21:53:56 +00:00
12 lines
131 B
Rust
12 lines
131 B
Rust
// run-pass
|
|
#[repr(u8)]
|
|
enum Foo {
|
|
Foo(#[allow(dead_code)] u8),
|
|
}
|
|
|
|
fn main() {
|
|
match Foo::Foo(1) {
|
|
_ => ()
|
|
}
|
|
}
|