]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/overflow_check_conditional.stderr
Auto merge of #8374 - Alexendoo:bless-revisions, r=camsteffen
[rust.git] / tests / ui / overflow_check_conditional.stderr
index 0bd20210f01fd66a8bc0a2b5aeef30fe688fac60..1b8b146b60ae72558f14c5a2cb34d0272ad39276 100644 (file)
@@ -1,51 +1,51 @@
-error: You are trying to use classic C overflow conditions that will fail in Rust.
-  --> $DIR/overflow_check_conditional.rs:21:5
+error: you are trying to use classic C overflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:7:8
    |
-21 |     if a + b < a {
+LL |     if a + b < a {}
    |        ^^^^^^^^^
    |
    = note: `-D clippy::overflow-check-conditional` implied by `-D warnings`
 
-error: You are trying to use classic C overflow conditions that will fail in Rust.
-  --> $DIR/overflow_check_conditional.rs:24:5
+error: you are trying to use classic C overflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:8:8
    |
-24 |     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:27:5
+error: you are trying to use classic C overflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:9:8
    |
-27 |     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:30:5
+error: you are trying to use classic C overflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:10:8
    |
-30 |     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:33:5
+error: you are trying to use classic C underflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:11:8
    |
-33 |     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:36:5
+error: you are trying to use classic C underflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:12:8
    |
-36 |     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:39:5
+error: you are trying to use classic C underflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:13:8
    |
-39 |     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:42:5
+error: you are trying to use classic C underflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:14:8
    |
-42 |     if a < a - b {
+LL |     if a < a - b {}
    |        ^^^^^^^^^
 
 error: aborting due to 8 previous errors