rust/src/test/ui/issues/issue-23302-1.stderr

17 lines
520 B
Plaintext
Raw Normal View History

2019-09-28 09:59:19 -05:00
error[E0391]: cycle detected when const checking `X::A::{{constant}}#0`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-23302-1.rs:4:9
|
2019-03-09 06:03:44 -06:00
LL | A = X::A as isize,
| ^^^^^^^^^^^^^
2018-04-15 16:21:00 -05:00
|
2019-09-28 09:59:19 -05:00
= note: ...which again requires const checking `X::A::{{constant}}#0`, completing the cycle
note: cycle used when processing `X::A::{{constant}}#0`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-23302-1.rs:4:9
|
2019-03-09 06:03:44 -06:00
LL | A = X::A as isize,
| ^^^^^^^^^^^^^
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0391`.