1
Fork 0

Update *.stderr files

This commit is contained in:
flip1995 2018-12-27 16:57:55 +01:00
parent 9fddb2afce
commit d2dbd0b8a5
No known key found for this signature in database
GPG key ID: E8E897A5870E41C2
223 changed files with 4700 additions and 4700 deletions

View file

@ -1,7 +1,7 @@
error: You are trying to use classic C overflow conditions that will fail in Rust.
--> $DIR/overflow_check_conditional.rs:17:8
|
17 | if a + b < a {}
LL | if a + b < a {}
| ^^^^^^^^^
|
= note: `-D clippy::overflow-check-conditional` implied by `-D warnings`
@ -9,43 +9,43 @@ error: You are trying to use classic C overflow conditions that will fail in Rus
error: You are trying to use classic C overflow conditions that will fail in Rust.
--> $DIR/overflow_check_conditional.rs:18:8
|
18 | if a > a + b {}
LL | if a > a + b {}
| ^^^^^^^^^
error: You are trying to use classic C overflow conditions that will fail in Rust.
--> $DIR/overflow_check_conditional.rs:19:8
|
19 | if a + b < b {}
LL | if a + b < b {}
| ^^^^^^^^^
error: You are trying to use classic C overflow conditions that will fail in Rust.
--> $DIR/overflow_check_conditional.rs:20:8
|
20 | if b > a + b {}
LL | if b > a + b {}
| ^^^^^^^^^
error: You are trying to use classic C underflow conditions that will fail in Rust.
--> $DIR/overflow_check_conditional.rs:21:8
|
21 | if a - b > b {}
LL | if a - b > b {}
| ^^^^^^^^^
error: You are trying to use classic C underflow conditions that will fail in Rust.
--> $DIR/overflow_check_conditional.rs:22:8
|
22 | if b < a - b {}
LL | if b < a - b {}
| ^^^^^^^^^
error: You are trying to use classic C underflow conditions that will fail in Rust.
--> $DIR/overflow_check_conditional.rs:23:8
|
23 | if a - b > a {}
LL | if a - b > a {}
| ^^^^^^^^^
error: You are trying to use classic C underflow conditions that will fail in Rust.
--> $DIR/overflow_check_conditional.rs:24:8
|
24 | if a < a - b {}
LL | if a < a - b {}
| ^^^^^^^^^
error: aborting due to 8 previous errors