Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
src
/
tools
/
miri
/
tests
/
pass
/
issues
/
issue-34571.rs
blob: bdb0d39cebadf1e70fbfc14733b0706f5920d49d [
file
]
#[
repr
(
u8
)]
enum
Foo
{
Foo
(#[
allow
(
dead_code
)]
u8
),
}
fn
main
()
{
match
Foo
::
Foo
(
1
)
{
_
=>
(),
}
}