blob: 98a354b1bd0fc5f5f7b337c5ed034d777de63725 [file] [log] [blame]
enum Delicious {
Pie = 0x1,
Apple = 0x2,
ApplePie = Delicious::Apple as isize | Delicious::PIE as isize,
//~^ ERROR no variant or associated item named `PIE` found for type `Delicious`
}
fn main() {}