Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Since `Y::B` here defaults to `Y::A+1`, this is also a
// recursive definition.
enum Y {
A = Y::B as isize, //~ ERROR E0391
B,
}
fn main() { }