Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Check that an enum with recursion in the discriminant throws
// the appropriate error (rather than, say, blowing the stack).
enum X {
A = X::A as isize, //~ ERROR E0391
}
fn main() { }