blob: 24e79dc581197b345d0f7d9a10fa590db34fd4c0 (
plain)
1
2
3
4
5
6
7
|
// 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() { }
|