blob: 24e79dc581197b345d0f7d9a10fa590db34fd4c0 [file] [log] [blame]
// 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() { }