rust/tests/ui/arithmetic.stderr

74 lines
1.4 KiB
Plaintext
Raw Normal View History

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