Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
expr
/
issue-22933-2.rs
blob: dfd84b9a79d404e701c79d068ddfb13c8efbbf9b [
file
] [
log
] [
blame
] [
edit
]
enum
Delicious
{
Pie
=
0x1
,
Apple
=
0x2
,
ApplePie
=
Delicious
::
Apple
as
isize
|
Delicious
::
PIE
as
isize
,
//~^ ERROR no variant or associated item named `PIE` found
}
fn
main
()
{}