summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-eval/infinite_loop.stderr
blob: f0434a847cea5b2acfe49a97b08745b248878100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
error: constant evaluation is taking a long time
  --> $DIR/infinite_loop.rs:6:9
   |
LL | /         while n != 0 {
LL | |
LL | |             n = if n % 2 == 0 { n / 2 } else { 3 * n + 1 };
LL | |         }
   | |_________^
   |
   = note: this lint makes sure the compiler doesn't get stuck due to infinite loops in const eval.
           If your compilation actually takes a long time, you can safely allow the lint.
help: the constant being evaluated
  --> $DIR/infinite_loop.rs:4:18
   |
LL |       let _ = [(); {
   |  __________________^
LL | |         let mut n = 113383; // #20 in https://oeis.org/A006884
LL | |         while n != 0 {
LL | |
...  |
LL | |         n
LL | |     }];
   | |_____^
   = note: `#[deny(long_running_const_eval)]` on by default

error: aborting due to previous error