]> git.proxmox.com Git - rustc.git/blame_incremental - tests/ui/consts/const-eval/infinite_loop.stderr
New upstream version 1.69.0+dfsg1
[rustc.git] / tests / ui / consts / const-eval / infinite_loop.stderr
... / ...
CommitLineData
1error[E0080]: evaluation of constant value failed
2 --> $DIR/infinite_loop.rs:6:9
3 |
4LL | / while n != 0 {
5LL | |
6LL | | n = if n % 2 == 0 { n/2 } else { 3*n + 1 };
7LL | | }
8 | |_________^ exceeded interpreter step limit (see `#[const_eval_limit]`)
9
10error: aborting due to previous error
11
12For more information about this error, try `rustc --explain E0080`.