rust/tests/ui/arithmetic.stderr

128 lines
2.4 KiB
Text
Raw Normal View History

error: integer arithmetic detected
--> $DIR/arithmetic.rs:13:5
2018-10-06 18:18:06 +02:00
|
2018-12-27 16:57:55 +01:00
LL | 1 + i;
2018-10-06 18:18:06 +02:00
| ^^^^^
|
= note: `-D clippy::integer-arithmetic` implied by `-D warnings`
error: integer arithmetic detected
--> $DIR/arithmetic.rs:14:5
2018-10-06 18:18:06 +02:00
|
2018-12-27 16:57:55 +01:00
LL | i * 2;
2018-10-06 18:18:06 +02:00
| ^^^^^
error: integer arithmetic detected
--> $DIR/arithmetic.rs:15:5
|
2018-12-27 16:57:55 +01:00
LL | / 1 %
LL | | i / 2; // no error, this is part of the expression in the preceding line
| |_________^
error: integer arithmetic detected
--> $DIR/arithmetic.rs:17:5
|
2018-12-27 16:57:55 +01:00
LL | i - 2 + 2 - i;
| ^^^^^^^^^^^^^
2019-01-21 13:59:49 +01:00
error: integer arithmetic detected
--> $DIR/arithmetic.rs:18:5
|
LL | -i;
| ^^
error: integer arithmetic detected
--> $DIR/arithmetic.rs:30:5
|
LL | i += 1;
| ^^^^^^
error: integer arithmetic detected
--> $DIR/arithmetic.rs:31:5
|
LL | i -= 1;
| ^^^^^^
error: integer arithmetic detected
2019-01-21 13:59:49 +01:00
--> $DIR/arithmetic.rs:32:5
|
LL | i *= 2;
| ^^^^^^
error: integer arithmetic detected
--> $DIR/arithmetic.rs:33:5
|
LL | i /= 2;
| ^^^^^^
error: integer arithmetic detected
--> $DIR/arithmetic.rs:34:5
|
LL | i %= 2;
| ^^^^^^
error: floating-point arithmetic detected
--> $DIR/arithmetic.rs:45:5
|
2018-12-27 16:57:55 +01:00
LL | f * 2.0;
| ^^^^^^^
|
= note: `-D clippy::float-arithmetic` implied by `-D warnings`
error: floating-point arithmetic detected
--> $DIR/arithmetic.rs:47:5
|
2018-12-27 16:57:55 +01:00
LL | 1.0 + f;
| ^^^^^^^
error: floating-point arithmetic detected
--> $DIR/arithmetic.rs:48:5
|
2018-12-27 16:57:55 +01:00
LL | f * 2.0;
| ^^^^^^^
error: floating-point arithmetic detected
--> $DIR/arithmetic.rs:49:5
|
2018-12-27 16:57:55 +01:00
LL | f / 2.0;
| ^^^^^^^
error: floating-point arithmetic detected
--> $DIR/arithmetic.rs:50:5
|
2018-12-27 16:57:55 +01:00
LL | f - 2.0 * 4.2;
| ^^^^^^^^^^^^^
error: floating-point arithmetic detected
--> $DIR/arithmetic.rs:51:5
|
2018-12-27 16:57:55 +01:00
LL | -f;
| ^^
error: floating-point arithmetic detected
--> $DIR/arithmetic.rs:53:5
|
LL | f += 1.0;
| ^^^^^^^^
error: floating-point arithmetic detected
--> $DIR/arithmetic.rs:54:5
|
LL | f -= 1.0;
| ^^^^^^^^
error: floating-point arithmetic detected
--> $DIR/arithmetic.rs:55:5
|
LL | f *= 2.0;
| ^^^^^^^^
error: floating-point arithmetic detected
--> $DIR/arithmetic.rs:56:5
|
LL | f /= 2.0;
| ^^^^^^^^
error: aborting due to 20 previous errors
2018-01-16 17:06:27 +01:00