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