]> git.proxmox.com Git - rustc.git/blobdiff - src/tools/clippy/tests/ui/overflow_check_conditional.stderr
New upstream version 1.23.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / overflow_check_conditional.stderr
index 543075ff5de1472d05f52747bc1e1bc518dc9715..9f23e96c06557791d7103556f2050de690ef3843 100644 (file)
@@ -1,52 +1,50 @@
 error: You are trying to use classic C overflow conditions that will fail in Rust.
   --> $DIR/overflow_check_conditional.rs:11:5
    |
-11 | \tif a + b < a {
-   | \t   ^^^^^^^^^
+11 |  if a + b < a {
+   |     ^^^^^^^^^
    |
    = note: `-D 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
    |
-14 | \tif a > a + b {
-   | \t   ^^^^^^^^^
+14 |  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
    |
-17 | \tif a + b < b {
-   | \t   ^^^^^^^^^
+17 |  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
    |
-20 | \tif b > a + b {
-   | \t   ^^^^^^^^^
+20 |  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
    |
-23 | \tif a - b > b {
-   | \t   ^^^^^^^^^
+23 |  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
    |
-26 | \tif b < a - b {
-   | \t   ^^^^^^^^^
+26 |  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
    |
-29 | \tif a - b > a {
-   | \t   ^^^^^^^^^
+29 |  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
    |
-32 | \tif a < a - b {
-   | \t   ^^^^^^^^^
-
-error: aborting due to 8 previous errors
+32 |  if a < a - b {
+   |     ^^^^^^^^^