]> 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 adf353a1c4bc11f50a4b8d43431aad51293dd96a..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:11:5
+  --> $DIR/overflow_check_conditional.rs:8:8
    |
-11 |     if a + b < a {
+LL |     if a + b < a {}
    |        ^^^^^^^^^
    |
-   = note: `-D overflow-check-conditional` implied by `-D warnings`
+   = 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:14:5
+  --> $DIR/overflow_check_conditional.rs:9:8
    |
-14 |     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:17:5
+  --> $DIR/overflow_check_conditional.rs:10:8
    |
-17 |     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:5
+  --> $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:23:5
+  --> $DIR/overflow_check_conditional.rs:12:8
    |
-23 |     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:26:5
+  --> $DIR/overflow_check_conditional.rs:13:8
    |
-26 |     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:29:5
+  --> $DIR/overflow_check_conditional.rs:14:8
    |
-29 |     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:32:5
+  --> $DIR/overflow_check_conditional.rs:15:8
    |
-32 |     if a < a - b {
+LL |     if a < a - b {}
    |        ^^^^^^^^^
 
 error: aborting due to 8 previous errors