summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval/infinite_loop.stderr
blob: d01376e595945f8cb0fbb65254dff3687cd12e8b (plain)
1
2
3
4
5
6
7
8
9
error[E0080]: evaluation of constant value failed
  --> $DIR/infinite_loop.rs:7:17
   |
LL |             n = if n % 2 == 0 { n/2 } else { 3*n + 1 };
   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ exceeded interpreter step limit (see `#[const_eval_limit]`)

error: aborting due to previous error

For more information about this error, try `rustc --explain E0080`.