summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/floating_point_exp.stderr
blob: 5cd999ad47cdd0d768138c901b1a9df01d891d8b (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
28
error: (e.pow(x) - 1) can be computed more accurately
  --> $DIR/floating_point_exp.rs:6:13
   |
LL |     let _ = x.exp() - 1.0;
   |             ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
   |
   = note: `-D clippy::imprecise-flops` implied by `-D warnings`

error: (e.pow(x) - 1) can be computed more accurately
  --> $DIR/floating_point_exp.rs:7:13
   |
LL |     let _ = x.exp() - 1.0 + 2.0;
   |             ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`

error: (e.pow(x) - 1) can be computed more accurately
  --> $DIR/floating_point_exp.rs:13:13
   |
LL |     let _ = x.exp() - 1.0;
   |             ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`

error: (e.pow(x) - 1) can be computed more accurately
  --> $DIR/floating_point_exp.rs:14:13
   |
LL |     let _ = x.exp() - 1.0 + 2.0;
   |             ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`

error: aborting due to 4 previous errors