]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/shadow.stderr
Update changed ui tests
[rust.git] / tests / ui / shadow.stderr
index 50f41627acbf228a56e27ba6f6e6fd6607b1713c..0eb5e5b2a2b30d49a42810abd9d1c51675778318 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,3 +134,5 @@ note: previous binding is here
 21 |     let x = y;
    |         ^
 
+error: aborting due to 9 previous errors
+