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