]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-23302-1.rs
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-23302-1.rs
1 // Check that an enum with recursion in the discriminant throws
2 // the appropriate error (rather than, say, blowing the stack).
3 enum X {
4 A = X::A as isize, //~ ERROR E0391
5 }
6
7 fn main() { }