]> git.lizzy.rs Git - rust.git/blob - tests/ui/approx_const.stderr
Merge pull request #1520 from Manishearth/rustup
[rust.git] / tests / ui / approx_const.stderr
1 error: approximate value of `f{32, 64}::consts::E` found. Consider using it directly
2  --> $DIR/approx_const.rs:7:16
3   |
4 7 |     let my_e = 2.7182;
5   |                ^^^^^^
6   |
7 note: lint level defined here
8  --> $DIR/approx_const.rs:4:8
9   |
10 4 | #[deny(approx_constant)]
11   |        ^^^^^^^^^^^^^^^
12
13 error: approximate value of `f{32, 64}::consts::E` found. Consider using it directly
14  --> $DIR/approx_const.rs:8:20
15   |
16 8 |     let almost_e = 2.718;
17   |                    ^^^^^
18
19 error: approximate value of `f{32, 64}::consts::FRAC_1_PI` found. Consider using it directly
20   --> $DIR/approx_const.rs:11:24
21    |
22 11 |     let my_1_frac_pi = 0.3183;
23    |                        ^^^^^^
24
25 error: approximate value of `f{32, 64}::consts::FRAC_1_SQRT_2` found. Consider using it directly
26   --> $DIR/approx_const.rs:14:28
27    |
28 14 |     let my_frac_1_sqrt_2 = 0.70710678;
29    |                            ^^^^^^^^^^
30
31 error: approximate value of `f{32, 64}::consts::FRAC_1_SQRT_2` found. Consider using it directly
32   --> $DIR/approx_const.rs:15:32
33    |
34 15 |     let almost_frac_1_sqrt_2 = 0.70711;
35    |                                ^^^^^^^
36
37 error: approximate value of `f{32, 64}::consts::FRAC_2_PI` found. Consider using it directly
38   --> $DIR/approx_const.rs:18:24
39    |
40 18 |     let my_frac_2_pi = 0.63661977;
41    |                        ^^^^^^^^^^
42
43 error: approximate value of `f{32, 64}::consts::FRAC_2_SQRT_PI` found. Consider using it directly
44   --> $DIR/approx_const.rs:21:27
45    |
46 21 |     let my_frac_2_sq_pi = 1.128379;
47    |                           ^^^^^^^^
48
49 error: approximate value of `f{32, 64}::consts::FRAC_PI_2` found. Consider using it directly
50   --> $DIR/approx_const.rs:24:24
51    |
52 24 |     let my_frac_pi_2 = 1.57079632679;
53    |                        ^^^^^^^^^^^^^
54
55 error: approximate value of `f{32, 64}::consts::FRAC_PI_3` found. Consider using it directly
56   --> $DIR/approx_const.rs:27:24
57    |
58 27 |     let my_frac_pi_3 = 1.04719755119;
59    |                        ^^^^^^^^^^^^^
60
61 error: approximate value of `f{32, 64}::consts::FRAC_PI_4` found. Consider using it directly
62   --> $DIR/approx_const.rs:30:24
63    |
64 30 |     let my_frac_pi_4 = 0.785398163397;
65    |                        ^^^^^^^^^^^^^^
66
67 error: approximate value of `f{32, 64}::consts::FRAC_PI_6` found. Consider using it directly
68   --> $DIR/approx_const.rs:33:24
69    |
70 33 |     let my_frac_pi_6 = 0.523598775598;
71    |                        ^^^^^^^^^^^^^^
72
73 error: approximate value of `f{32, 64}::consts::FRAC_PI_8` found. Consider using it directly
74   --> $DIR/approx_const.rs:36:24
75    |
76 36 |     let my_frac_pi_8 = 0.3926990816987;
77    |                        ^^^^^^^^^^^^^^^
78
79 error: approximate value of `f{32, 64}::consts::LN_10` found. Consider using it directly
80   --> $DIR/approx_const.rs:39:20
81    |
82 39 |     let my_ln_10 = 2.302585092994046;
83    |                    ^^^^^^^^^^^^^^^^^
84
85 error: approximate value of `f{32, 64}::consts::LN_2` found. Consider using it directly
86   --> $DIR/approx_const.rs:42:19
87    |
88 42 |     let my_ln_2 = 0.6931471805599453;
89    |                   ^^^^^^^^^^^^^^^^^^
90
91 error: approximate value of `f{32, 64}::consts::LOG10_E` found. Consider using it directly
92   --> $DIR/approx_const.rs:45:22
93    |
94 45 |     let my_log10_e = 0.43429448190325182;
95    |                      ^^^^^^^^^^^^^^^^^^^
96
97 error: approximate value of `f{32, 64}::consts::LOG2_E` found. Consider using it directly
98   --> $DIR/approx_const.rs:48:21
99    |
100 48 |     let my_log2_e = 1.4426950408889634;
101    |                     ^^^^^^^^^^^^^^^^^^
102
103 error: approximate value of `f{32, 64}::consts::PI` found. Consider using it directly
104   --> $DIR/approx_const.rs:51:17
105    |
106 51 |     let my_pi = 3.1415;
107    |                 ^^^^^^
108
109 error: approximate value of `f{32, 64}::consts::PI` found. Consider using it directly
110   --> $DIR/approx_const.rs:52:21
111    |
112 52 |     let almost_pi = 3.14;
113    |                     ^^^^
114
115 error: approximate value of `f{32, 64}::consts::SQRT_2` found. Consider using it directly
116   --> $DIR/approx_const.rs:55:18
117    |
118 55 |     let my_sq2 = 1.4142;
119    |                  ^^^^^^
120
121 error: aborting due to 19 previous errors
122