]> git.proxmox.com Git - rustc.git/blobdiff - src/tools/clippy/tests/ui/shadow.stderr
New upstream version 1.23.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / shadow.stderr
index 3fc2b7234f782371d63fd07d722b077e84d9b524..d5043261188da71ccc9b3d7dcbb7aebd9261cbca 100644 (file)
@@ -2,7 +2,7 @@ error: `x` is shadowed by itself in `&mut x`
   --> $DIR/shadow.rs:13:5
    |
 13 |     let x = &mut x;
-   |     ^^^^^^^^^^^^^^
+   |     ^^^^^^^^^^^^^^^
    |
    = note: `-D shadow-same` implied by `-D warnings`
 note: previous binding is here
@@ -15,7 +15,7 @@ error: `x` is shadowed by itself in `{ x }`
   --> $DIR/shadow.rs:14:5
    |
 14 |     let x = { x };
-   |     ^^^^^^^^^^^^^
+   |     ^^^^^^^^^^^^^^
    |
 note: previous binding is here
   --> $DIR/shadow.rs:13:9
@@ -27,7 +27,7 @@ error: `x` is shadowed by itself in `(&*x)`
   --> $DIR/shadow.rs:15:5
    |
 15 |     let x = (&*x);
-   |     ^^^^^^^^^^^^^
+   |     ^^^^^^^^^^^^^^
    |
 note: previous binding is here
   --> $DIR/shadow.rs:14:9
@@ -126,7 +126,7 @@ error: `x` shadows a previous declaration
   --> $DIR/shadow.rs:23:5
    |
 23 |     let x;
-   |     ^^^^^
+   |     ^^^^^^
    |
 note: previous binding is here
   --> $DIR/shadow.rs:21:9
@@ -134,5 +134,3 @@ note: previous binding is here
 21 |     let x = y;
    |         ^
 
-error: aborting due to 9 previous errors
-