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