blob: 8704f7bbd7c4e134db3fa2a5779598260abe350c [file] [log] [blame]
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:15:5
|
LL | f * 2.0;
| ^^^^^^^
|
= note: `-D clippy::float-arithmetic` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::float_arithmetic)]`
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:20:5
|
LL | 1.0 + f;
| ^^^^^^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:23:5
|
LL | f * 2.0;
| ^^^^^^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:26:5
|
LL | f / 2.0;
| ^^^^^^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:29:5
|
LL | f - 2.0 * 4.2;
| ^^^^^^^^^^^^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:32:5
|
LL | -f;
| ^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:36:5
|
LL | f += 1.0;
| ^^^^^^^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:39:5
|
LL | f -= 1.0;
| ^^^^^^^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:42:5
|
LL | f *= 2.0;
| ^^^^^^^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:45:5
|
LL | f /= 2.0;
| ^^^^^^^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:53:5
|
LL | 3.1_f32 + &1.2_f32;
| ^^^^^^^^^^^^^^^^^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:56:5
|
LL | &3.4_f32 + 1.5_f32;
| ^^^^^^^^^^^^^^^^^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:59:5
|
LL | &3.5_f32 + &1.3_f32;
| ^^^^^^^^^^^^^^^^^^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:65:5
|
LL | a + f
| ^^^^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:70:5
|
LL | f1 + f2
| ^^^^^^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:75:5
|
LL | f1 + f2
| ^^^^^^^
error: floating-point arithmetic detected
--> tests/ui/float_arithmetic.rs:80:5
|
LL | (&f1 + &f2)
| ^^^^^^^^^^^
error: aborting due to 17 previous errors