mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 12:36:35 +03:00
9 lines
219 B
Rust
9 lines
219 B
Rust
enum Delicious {
|
|
Pie = 0x1,
|
|
Apple = 0x2,
|
|
ApplePie = Delicious::Apple as isize | Delicious::PIE as isize,
|
|
//~^ ERROR no variant, associated function, or constant named `PIE` found
|
|
}
|
|
|
|
fn main() {}
|