From 9ebc30cb0c05e07e62883ce131bc24ac8459b14b Mon Sep 17 00:00:00 2001 From: sinkuu Date: Mon, 9 Oct 2017 22:49:54 +0900 Subject: [PATCH] rustc 1.22.0-nightly (150b625a0 2017-10-08) --- tests/ui/shadow.stderr | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/ui/shadow.stderr b/tests/ui/shadow.stderr index 50f41627acb..d5043261188 100644 --- a/tests/ui/shadow.stderr +++ b/tests/ui/shadow.stderr @@ -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