2022-09-21 13:05:20 +02:00
|
|
|
error[E0080]: evaluation of constant value failed
|
2023-01-04 05:04:03 +00:00
|
|
|
--> $DIR/const_eval_limit_reached.rs:6:5
|
2020-02-19 10:24:16 +01:00
|
|
|
|
|
2023-01-04 05:04:03 +00:00
|
|
|
LL | / while x != 1000 {
|
|
|
|
LL | |
|
|
|
|
LL | | x += 1;
|
|
|
|
LL | | }
|
|
|
|
| |_____^ exceeded interpreter step limit (see `#[const_eval_limit]`)
|
2020-03-17 16:08:28 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
2020-01-21 16:46:07 +01:00
|
|
|
|
2022-09-21 13:05:20 +02:00
|
|
|
For more information about this error, try `rustc --explain E0080`.
|