error: integer arithmetic detected --> $DIR/arithmetic.rs:17:5 | 17 | 1 + i; | ^^^^^ | = note: `-D clippy::integer-arithmetic` implied by `-D warnings` error: integer arithmetic detected --> $DIR/arithmetic.rs:18:5 | 18 | i * 2; | ^^^^^ error: integer arithmetic detected --> $DIR/arithmetic.rs:19:5 | 19 | / 1 % 20 | | i / 2; // no error, this is part of the expression in the preceding line | |_________^ error: integer arithmetic detected --> $DIR/arithmetic.rs:21:5 | 21 | i - 2 + 2 - i; | ^^^^^^^^^^^^^ error: integer arithmetic detected --> $DIR/arithmetic.rs:22:5 | 22 | -i; | ^^ error: floating-point arithmetic detected --> $DIR/arithmetic.rs:32:5 | 32 | f * 2.0; | ^^^^^^^ | = note: `-D clippy::float-arithmetic` implied by `-D warnings` error: floating-point arithmetic detected --> $DIR/arithmetic.rs:34:5 | 34 | 1.0 + f; | ^^^^^^^ error: floating-point arithmetic detected --> $DIR/arithmetic.rs:35:5 | 35 | f * 2.0; | ^^^^^^^ error: floating-point arithmetic detected --> $DIR/arithmetic.rs:36:5 | 36 | f / 2.0; | ^^^^^^^ error: floating-point arithmetic detected --> $DIR/arithmetic.rs:37:5 | 37 | f - 2.0 * 4.2; | ^^^^^^^^^^^^^ error: floating-point arithmetic detected --> $DIR/arithmetic.rs:38:5 | 38 | -f; | ^^ error: aborting due to 11 previous errors