]> 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 f3c330b168a4a8287055d541fbe7581f3227a29e..1b8b146b60ae72558f14c5a2cb34d0272ad39276 100644 (file)
@@ -1,56 +1,52 @@
-error: You are trying to use classic C overflow conditions that will fail in Rust.
-  --> $DIR/overflow_check_conditional.rs:11:5
+error: you are trying to use classic C overflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:7:8
    |
-11 | \tif a + b < a { //~ERROR You are trying to use classic C overflow conditions that will fail in Rust.
-   | \t   ^^^^^^^^^
+LL |     if a + b < a {}
+   |        ^^^^^^^^^
    |
-note: lint level defined here
-  --> $DIR/overflow_check_conditional.rs:5:9
-   |
-5  | #![deny(overflow_check_conditional)]
-   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
+   = 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
+error: you are trying to use classic C overflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:8:8
    |
-14 | \tif a > a + b { //~ERROR You are trying to use classic C overflow conditions that will fail in Rust.
-   | \t   ^^^^^^^^^
+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
+error: you are trying to use classic C overflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:9:8
    |
-17 | \tif a + b < b { //~ERROR You are trying to use classic C overflow conditions that will fail in Rust.
-   | \t   ^^^^^^^^^
+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
+error: you are trying to use classic C overflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:10:8
    |
-20 | \tif b > a + b { //~ERROR You are trying to use classic C overflow conditions that will fail in Rust.
-   | \t   ^^^^^^^^^
+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
+error: you are trying to use classic C underflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:11:8
    |
-23 | \tif a - b > b { //~ERROR You are trying to use classic C underflow conditions that will fail in Rust.
-   | \t   ^^^^^^^^^
+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
+error: you are trying to use classic C underflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:12:8
    |
-26 | \tif b < a - b { //~ERROR You are trying to use classic C underflow conditions that will fail in Rust.
-   | \t   ^^^^^^^^^
+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
+error: you are trying to use classic C underflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:13:8
    |
-29 | \tif a - b > a { //~ERROR You are trying to use classic C underflow conditions that will fail in Rust.
-   | \t   ^^^^^^^^^
+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
+error: you are trying to use classic C underflow conditions that will fail in Rust
+  --> $DIR/overflow_check_conditional.rs:14:8
    |
-32 | \tif a < a - b { //~ERROR You are trying to use classic C underflow conditions that will fail in Rust.
-   | \t   ^^^^^^^^^
+LL |     if a < a - b {}
+   |        ^^^^^^^^^
 
 error: aborting due to 8 previous errors