Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
const-enum-ptr.rs
blob: 1e12c69428ebe6eb8670268edb842aa39b769a81 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
enum
E
{
V0
,
V1
(
isize
)
}
static
C
:
&
'
static
E
=
&
E
::
V0
;
pub
fn
main
()
{
match
*
C
{
E
::
V0
=>
(),
_
=>
panic
!()
}
}