rust/tests/ui/consts/const_limit/const_eval_limit_reached.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
351 B
Plaintext
Raw Normal View History

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
|
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
2022-09-21 06:05:20 -05:00
For more information about this error, try `rustc --explain E0080`.