2017-05-17 07:19:44 -05:00
|
|
|
error: integer arithmetic detected
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/arithmetic.rs:13:5
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | 1 + i;
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::integer-arithmetic` implied by `-D warnings`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
error: integer arithmetic detected
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/arithmetic.rs:14:5
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | i * 2;
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
error: integer arithmetic detected
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/arithmetic.rs:15:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / 1 %
|
|
|
|
LL | | i / 2; // no error, this is part of the expression in the preceding line
|
2017-05-17 07:19:44 -05:00
|
|
|
| |_________^
|
|
|
|
|
|
|
|
error: integer arithmetic detected
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/arithmetic.rs:17:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | i - 2 + 2 - i;
|
2017-05-17 07:19:44 -05:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
2019-01-21 06:59:49 -06:00
|
|
|
error: integer arithmetic detected
|
|
|
|
--> $DIR/arithmetic.rs:18:5
|
|
|
|
|
|
|
|
|
LL | -i;
|
|
|
|
| ^^
|
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
error: floating-point arithmetic detected
|
2019-01-21 06:59:49 -06:00
|
|
|
--> $DIR/arithmetic.rs:32:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | f * 2.0;
|
2017-05-17 07:19:44 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::float-arithmetic` implied by `-D warnings`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
error: floating-point arithmetic detected
|
2019-01-21 06:59:49 -06:00
|
|
|
--> $DIR/arithmetic.rs:34:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | 1.0 + f;
|
2017-05-17 07:19:44 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: floating-point arithmetic detected
|
2019-01-21 06:59:49 -06:00
|
|
|
--> $DIR/arithmetic.rs:35:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | f * 2.0;
|
2017-05-17 07:19:44 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: floating-point arithmetic detected
|
2019-01-21 06:59:49 -06:00
|
|
|
--> $DIR/arithmetic.rs:36:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | f / 2.0;
|
2017-05-17 07:19:44 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: floating-point arithmetic detected
|
2019-01-21 06:59:49 -06:00
|
|
|
--> $DIR/arithmetic.rs:37:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | f - 2.0 * 4.2;
|
2017-05-17 07:19:44 -05:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: floating-point arithmetic detected
|
2019-01-21 06:59:49 -06:00
|
|
|
--> $DIR/arithmetic.rs:38:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | -f;
|
2017-05-17 07:19:44 -05:00
|
|
|
| ^^
|
|
|
|
|
2019-01-21 06:59:49 -06:00
|
|
|
error: aborting due to 11 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|