Update for rustc output changes

This commit is contained in:
Oliver Schneider 2017-08-14 09:51:16 +02:00 committed by Oliver Schneider
parent 4e6dd55bed
commit d6fc34fd08
1 changed files with 8 additions and 8 deletions

View File

@ -1,8 +1,8 @@
error: `x` is shadowed by itself in `&mut x`
--> $DIR/shadow.rs:13:9
--> $DIR/shadow.rs:13:5
|
13 | let x = &mut x;
| ^^^^^^^^^^
| ^^^^^^^^^^^^^^
|
= note: `-D shadow-same` implied by `-D warnings`
note: previous binding is here
@ -12,10 +12,10 @@ note: previous binding is here
| ^
error: `x` is shadowed by itself in `{ x }`
--> $DIR/shadow.rs:14:9
--> $DIR/shadow.rs:14:5
|
14 | let x = { x };
| ^^^^^^^^^
| ^^^^^^^^^^^^^
|
note: previous binding is here
--> $DIR/shadow.rs:13:9
@ -24,10 +24,10 @@ note: previous binding is here
| ^
error: `x` is shadowed by itself in `(&*x)`
--> $DIR/shadow.rs:15:9
--> $DIR/shadow.rs:15:5
|
15 | let x = (&*x);
| ^^^^^^^^^
| ^^^^^^^^^^^^^
|
note: previous binding is here
--> $DIR/shadow.rs:14:9
@ -123,10 +123,10 @@ note: previous binding is here
| ^
error: `x` shadows a previous declaration
--> $DIR/shadow.rs:23:9
--> $DIR/shadow.rs:23:5
|
23 | let x;
| ^
| ^^^^^
|
note: previous binding is here
--> $DIR/shadow.rs:21:9