mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +00:00
9 lines
204 B
Rust
9 lines
204 B
Rust
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() {}
|