]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/dbg_macro.stderr
Auto merge of #6336 - giraffate:sync-from-rust, r=flip1995
[rust.git] / tests / ui / dbg_macro.stderr
index 28e59f4c11b3084d588957776d1738345863c84d..b8aafe966784663ae87609c6883b4d9935b02395 100644 (file)
@@ -5,7 +5,10 @@ LL |     if let Some(n) = dbg!(n.checked_sub(4)) {
    |                      ^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: `-D clippy::dbg-macro` implied by `-D warnings`
-   = help: ensure to avoid having uses of it in version control
+help: ensure to avoid having uses of it in version control
+   |
+LL |     if let Some(n) = n.checked_sub(4) {
+   |                      ^^^^^^^^^^^^^^^^
 
 error: `dbg!` macro is intended as a debugging tool
   --> $DIR/dbg_macro.rs:12:8
@@ -13,7 +16,10 @@ error: `dbg!` macro is intended as a debugging tool
 LL |     if dbg!(n <= 1) {
    |        ^^^^^^^^^^^^
    |
-   = help: ensure to avoid having uses of it in version control
+help: ensure to avoid having uses of it in version control
+   |
+LL |     if n <= 1 {
+   |        ^^^^^^
 
 error: `dbg!` macro is intended as a debugging tool
   --> $DIR/dbg_macro.rs:13:9
@@ -21,7 +27,10 @@ error: `dbg!` macro is intended as a debugging tool
 LL |         dbg!(1)
    |         ^^^^^^^
    |
-   = help: ensure to avoid having uses of it in version control
+help: ensure to avoid having uses of it in version control
+   |
+LL |         1
+   |
 
 error: `dbg!` macro is intended as a debugging tool
   --> $DIR/dbg_macro.rs:15:9
@@ -29,7 +38,10 @@ error: `dbg!` macro is intended as a debugging tool
 LL |         dbg!(n * factorial(n - 1))
    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
-   = help: ensure to avoid having uses of it in version control
+help: ensure to avoid having uses of it in version control
+   |
+LL |         n * factorial(n - 1)
+   |
 
 error: `dbg!` macro is intended as a debugging tool
   --> $DIR/dbg_macro.rs:20:5
@@ -37,7 +49,10 @@ error: `dbg!` macro is intended as a debugging tool
 LL |     dbg!(42);
    |     ^^^^^^^^
    |
-   = help: ensure to avoid having uses of it in version control
+help: ensure to avoid having uses of it in version control
+   |
+LL |     42;
+   |     ^^
 
 error: `dbg!` macro is intended as a debugging tool
   --> $DIR/dbg_macro.rs:21:5
@@ -45,7 +60,10 @@ error: `dbg!` macro is intended as a debugging tool
 LL |     dbg!(dbg!(dbg!(42)));
    |     ^^^^^^^^^^^^^^^^^^^^
    |
-   = help: ensure to avoid having uses of it in version control
+help: ensure to avoid having uses of it in version control
+   |
+LL |     dbg!(dbg!(42));
+   |     ^^^^^^^^^^^^^^
 
 error: `dbg!` macro is intended as a debugging tool
   --> $DIR/dbg_macro.rs:22:14
@@ -53,7 +71,10 @@ error: `dbg!` macro is intended as a debugging tool
 LL |     foo(3) + dbg!(factorial(4));
    |              ^^^^^^^^^^^^^^^^^^
    |
-   = help: ensure to avoid having uses of it in version control
+help: ensure to avoid having uses of it in version control
+   |
+LL |     foo(3) + factorial(4);
+   |              ^^^^^^^^^^^^
 
 error: aborting due to 7 previous errors