Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-34571.rs
blob: 1242a9e2b5c0175e3e38f30d9d78ee2f35dd255d [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#[
repr
(
u8
)]
enum
Foo
{
Foo
(#[
allow
(
dead_code
)]
u8
),
}
fn
main
()
{
match
Foo
::
Foo
(
1
)
{
_
=>
()
}
}