Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// build-pass
#![allow(dead_code)]
#[repr(u64)]
enum A {
A = 0u64,
B = !0u64,
}
fn cmp() -> A {
A::B
fn main() {}