Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
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() {}