rust/tests/ui/issues/issue-23302-2.stderr

17 lines
560 B
Plaintext
Raw Normal View History

error[E0391]: cycle detected when const-evaluating + checking `Y::A::{constant#0}`
2018-12-25 08:56:47 -07:00
--> $DIR/issue-23302-2.rs:4:9
|
2019-03-09 15:03:44 +03:00
LL | A = Y::B as isize,
| ^^^^^^^^^^^^^
2018-04-15 23:21:00 +02:00
|
= note: ...which immediately requires const-evaluating + checking `Y::A::{constant#0}` again
note: cycle used when simplifying constant for the type system `Y::A::{constant#0}`
2018-12-25 08:56:47 -07:00
--> $DIR/issue-23302-2.rs:4:9
|
2019-03-09 15:03:44 +03:00
LL | A = Y::B as isize,
| ^^^^^^^^^^^^^
error: aborting due to previous error
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0391`.