diff options
| author | Andy Russell <arussell123@gmail.com> | 2018-09-12 14:13:40 -0400 |
|---|---|---|
| committer | Andy Russell <arussell123@gmail.com> | 2018-09-12 17:16:18 -0400 |
| commit | d871b8ad4ab15b7003cd6aad4b5f361ef6d35fd8 (patch) | |
| tree | 03ebb586d2d9357c4aeab452d5a5755d363b1ed2 /src/test/ui/lifetimes | |
| parent | 6810f5286b6b91daab06fc3dccb27d8c46f14349 (diff) | |
| download | rust-d871b8ad4ab15b7003cd6aad4b5f361ef6d35fd8.tar.gz rust-d871b8ad4ab15b7003cd6aad4b5f361ef6d35fd8.zip | |
use structured suggestion for "missing mut" label
Fixes #54133.
Diffstat (limited to 'src/test/ui/lifetimes')
| -rw-r--r-- | src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-one-is-struct-2.nll.stderr | 2 | ||||
| -rw-r--r-- | src/test/ui/lifetimes/lifetime-errors/liveness-assign-imm-local-notes.stderr | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-one-is-struct-2.nll.stderr b/src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-one-is-struct-2.nll.stderr index 749b5760929..1a5f788e143 100644 --- a/src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-one-is-struct-2.nll.stderr +++ b/src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-one-is-struct-2.nll.stderr @@ -12,7 +12,7 @@ error[E0384]: cannot assign to immutable argument `y` --> $DIR/ex3-both-anon-regions-one-is-struct-2.rs:14:5 | LL | fn foo(mut x: Ref, y: &u32) { - | - consider changing this to `mut y` + | - help: make this binding mutable: `mut y` LL | y = x.b; //~ ERROR lifetime mismatch | ^^^^^^^ cannot assign to immutable argument diff --git a/src/test/ui/lifetimes/lifetime-errors/liveness-assign-imm-local-notes.stderr b/src/test/ui/lifetimes/lifetime-errors/liveness-assign-imm-local-notes.stderr index 0620235371a..fd3ae53d6ed 100644 --- a/src/test/ui/lifetimes/lifetime-errors/liveness-assign-imm-local-notes.stderr +++ b/src/test/ui/lifetimes/lifetime-errors/liveness-assign-imm-local-notes.stderr @@ -33,7 +33,7 @@ error[E0384]: cannot assign twice to immutable variable `x` (Mir) --> $DIR/liveness-assign-imm-local-notes.rs:23:9 | LL | let x; - | - consider changing this to `mut x` + | - help: make this binding mutable: `mut x` ... LL | x = 2; | ----- first assignment to `x` @@ -44,7 +44,7 @@ error[E0384]: cannot assign twice to immutable variable `x` (Mir) --> $DIR/liveness-assign-imm-local-notes.rs:35:13 | LL | let x; - | - consider changing this to `mut x` + | - help: make this binding mutable: `mut x` ... LL | x = 2; | ----- first assignment to `x` @@ -55,7 +55,7 @@ error[E0384]: cannot assign twice to immutable variable `x` (Mir) --> $DIR/liveness-assign-imm-local-notes.rs:45:13 | LL | let x; - | - consider changing this to `mut x` + | - help: make this binding mutable: `mut x` ... LL | x = 1; //~ ERROR (Ast) [E0384] | ^^^^^ cannot assign twice to immutable variable @@ -64,7 +64,7 @@ error[E0384]: cannot assign twice to immutable variable `x` (Mir) --> $DIR/liveness-assign-imm-local-notes.rs:48:13 | LL | let x; - | - consider changing this to `mut x` + | - help: make this binding mutable: `mut x` ... LL | x = 1; //~ ERROR (Ast) [E0384] | ----- first assignment to `x` |
