]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/overflow_check_conditional.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / overflow_check_conditional.stderr
index 1c15eeaf67be7e91ba26a5cf3a1218722213ce76..ad66135d326bdcf51538f817b48a4455a396dc7c 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:17:8
+  --> $DIR/overflow_check_conditional.rs:8:8
    |
-17 |     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:18:8
+  --> $DIR/overflow_check_conditional.rs:9: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
+  --> $DIR/overflow_check_conditional.rs:10: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
+  --> $DIR/overflow_check_conditional.rs:11: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
+  --> $DIR/overflow_check_conditional.rs:12: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
+  --> $DIR/overflow_check_conditional.rs:13: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
+  --> $DIR/overflow_check_conditional.rs:14: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
+  --> $DIR/overflow_check_conditional.rs:15:8
    |
-24 |     if a < a - b {}
+LL |     if a < a - b {}
    |        ^^^^^^^^^
 
 error: aborting due to 8 previous errors