提交 e97c29bd 编写于 作者: B bors

Auto merge of #86815 - FabianWolff:issue-84210, r=varkor

Improve error reporting for modifications behind `&` references

I had a look at #84210 and noticed that #85823 has effectively already fixed #84210.

However, the string matching in #85823 is _very_ crude and already breaks down when a variable name starts with `mut`. I have made this a bit more robust; further improvements could definitely be made but are complicated by the lack of information provided by an earlier pass:
https://github.com/rust-lang/rust/blob/ce331ee6ee010438d1a58c7da8ced4f26d69a20e/compiler/rustc_mir_build/src/build/matches/mod.rs#L2103-L2107

I have also fixed a missing comma in the error message.
...@@ -147,7 +147,7 @@ pub(crate) fn report_mutability_error( ...@@ -147,7 +147,7 @@ pub(crate) fn report_mutability_error(
if let Some(desc) = access_place_desc { if let Some(desc) = access_place_desc {
item_msg = format!("`{}`", desc); item_msg = format!("`{}`", desc);
reason = match error_access { reason = match error_access {
AccessKind::Mutate => format!(" which is behind {}", pointer_type), AccessKind::Mutate => format!(", which is behind {}", pointer_type),
AccessKind::MutableBorrow => { AccessKind::MutableBorrow => {
format!(", as it is behind {}", pointer_type) format!(", as it is behind {}", pointer_type)
} }
...@@ -897,16 +897,32 @@ fn suggest_ampmut<'tcx>( ...@@ -897,16 +897,32 @@ fn suggest_ampmut<'tcx>(
) -> (Span, String) { ) -> (Span, String) {
if let Some(assignment_rhs_span) = opt_assignment_rhs_span { if let Some(assignment_rhs_span) = opt_assignment_rhs_span {
if let Ok(src) = tcx.sess.source_map().span_to_snippet(assignment_rhs_span) { if let Ok(src) = tcx.sess.source_map().span_to_snippet(assignment_rhs_span) {
let is_mutbl = |ty: &str| -> bool {
if ty.starts_with("mut") {
let rest = &ty[3..];
match rest.chars().next() {
// e.g. `&mut x`
Some(c) if c.is_whitespace() => true,
// e.g. `&mut(x)`
Some('(') => true,
// e.g. `&mutablevar`
_ => false,
}
} else {
false
}
};
if let (true, Some(ws_pos)) = if let (true, Some(ws_pos)) =
(src.starts_with("&'"), src.find(|c: char| -> bool { c.is_whitespace() })) (src.starts_with("&'"), src.find(|c: char| -> bool { c.is_whitespace() }))
{ {
let lt_name = &src[1..ws_pos]; let lt_name = &src[1..ws_pos];
let ty = &src[ws_pos..]; let ty = src[ws_pos..].trim_start();
if !ty.trim_start().starts_with("mut") { if !is_mutbl(ty) {
return (assignment_rhs_span, format!("&{} mut {}", lt_name, ty)); return (assignment_rhs_span, format!("&{} mut {}", lt_name, ty));
} }
} else if let Some(stripped) = src.strip_prefix('&') { } else if let Some(stripped) = src.strip_prefix('&') {
if !stripped.trim_start().starts_with("mut") { let stripped = stripped.trim_start();
if !is_mutbl(stripped) {
return (assignment_rhs_span, format!("&mut {}", stripped)); return (assignment_rhs_span, format!("&mut {}", stripped));
} }
} }
......
error[E0594]: cannot assign to `*s.pointer` which is behind a `&` reference error[E0594]: cannot assign to `*s.pointer`, which is behind a `&` reference
--> $DIR/borrowck-assign-to-andmut-in-aliasable-loc.rs:9:5 --> $DIR/borrowck-assign-to-andmut-in-aliasable-loc.rs:9:5
| |
LL | fn a(s: &S) { LL | fn a(s: &S) {
...@@ -6,7 +6,7 @@ LL | fn a(s: &S) { ...@@ -6,7 +6,7 @@ LL | fn a(s: &S) {
LL | *s.pointer += 1; LL | *s.pointer += 1;
| ^^^^^^^^^^^^^^^ `s` is a `&` reference, so the data it refers to cannot be written | ^^^^^^^^^^^^^^^ `s` is a `&` reference, so the data it refers to cannot be written
error[E0594]: cannot assign to `*s.pointer` which is behind a `&` reference error[E0594]: cannot assign to `*s.pointer`, which is behind a `&` reference
--> $DIR/borrowck-assign-to-andmut-in-aliasable-loc.rs:17:5 --> $DIR/borrowck-assign-to-andmut-in-aliasable-loc.rs:17:5
| |
LL | fn c(s: & &mut S) { LL | fn c(s: & &mut S) {
......
error[E0594]: cannot assign to `**t1` which is behind a `&` reference error[E0594]: cannot assign to `**t1`, which is behind a `&` reference
--> $DIR/borrowck-borrow-mut-base-ptr-in-aliasable-loc.rs:9:5 --> $DIR/borrowck-borrow-mut-base-ptr-in-aliasable-loc.rs:9:5
| |
LL | let t1 = t0; LL | let t1 = t0;
......
error[E0594]: cannot assign to `***p` which is behind a `&` reference error[E0594]: cannot assign to `***p`, which is behind a `&` reference
--> $DIR/borrowck-issue-14498.rs:16:5 --> $DIR/borrowck-issue-14498.rs:16:5
| |
LL | let p = &y; LL | let p = &y;
......
error[E0594]: cannot assign to `*item` which is behind a `&` reference error[E0594]: cannot assign to `*item`, which is behind a `&` reference
--> $DIR/issue-69789-iterator-mut-suggestion.rs:7:9 --> $DIR/issue-69789-iterator-mut-suggestion.rs:7:9
| |
LL | for item in &mut std::iter::empty::<&'static ()>() { LL | for item in &mut std::iter::empty::<&'static ()>() {
......
...@@ -9,7 +9,7 @@ fn main() { ...@@ -9,7 +9,7 @@ fn main() {
for v in Query.iter_mut() { for v in Query.iter_mut() {
//~^ NOTE this iterator yields `&` references //~^ NOTE this iterator yields `&` references
*v -= 1; *v -= 1;
//~^ ERROR cannot assign to `*v` which is behind a `&` reference //~^ ERROR cannot assign to `*v`, which is behind a `&` reference
//~| NOTE `v` is a `&` reference, so the data it refers to cannot be written //~| NOTE `v` is a `&` reference, so the data it refers to cannot be written
} }
} }
......
error[E0594]: cannot assign to `*v` which is behind a `&` reference error[E0594]: cannot assign to `*v`, which is behind a `&` reference
--> $DIR/issue-83309-ice-immut-in-for-loop.rs:11:9 --> $DIR/issue-83309-ice-immut-in-for-loop.rs:11:9
| |
LL | for v in Query.iter_mut() { LL | for v in Query.iter_mut() {
......
...@@ -5,4 +5,11 @@ fn main() { ...@@ -5,4 +5,11 @@ fn main() {
rofl.push(Vec::new()); rofl.push(Vec::new());
//~^ ERROR cannot borrow `*rofl` as mutable, as it is behind a `&` reference //~^ ERROR cannot borrow `*rofl` as mutable, as it is behind a `&` reference
//~| NOTE `rofl` is a `&` reference, so the data it refers to cannot be borrowed as mutable //~| NOTE `rofl` is a `&` reference, so the data it refers to cannot be borrowed as mutable
let mut mutvar = 42;
let r = &mutvar;
//~^ HELP consider changing this to be a mutable reference
*r = 0;
//~^ ERROR cannot assign to `*r`, which is behind a `&` reference
//~| NOTE `r` is a `&` reference, so the data it refers to cannot be written
} }
...@@ -7,6 +7,16 @@ LL | ...@@ -7,6 +7,16 @@ LL |
LL | rofl.push(Vec::new()); LL | rofl.push(Vec::new());
| ^^^^ `rofl` is a `&` reference, so the data it refers to cannot be borrowed as mutable | ^^^^ `rofl` is a `&` reference, so the data it refers to cannot be borrowed as mutable
error: aborting due to previous error error[E0594]: cannot assign to `*r`, which is behind a `&` reference
--> $DIR/issue-85765.rs:12:5
|
LL | let r = &mutvar;
| ------- help: consider changing this to be a mutable reference: `&mut mutvar`
LL |
LL | *r = 0;
| ^^^^^^ `r` is a `&` reference, so the data it refers to cannot be written
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0596`. Some errors have detailed explanations: E0594, E0596.
For more information about an error, try `rustc --explain E0594`.
error[E0594]: cannot assign to `*x` which is behind a `&` reference error[E0594]: cannot assign to `*x`, which is behind a `&` reference
--> $DIR/mutability-errors.rs:9:5 --> $DIR/mutability-errors.rs:9:5
| |
LL | fn named_ref(x: &(i32,)) { LL | fn named_ref(x: &(i32,)) {
...@@ -6,7 +6,7 @@ LL | fn named_ref(x: &(i32,)) { ...@@ -6,7 +6,7 @@ LL | fn named_ref(x: &(i32,)) {
LL | *x = (1,); LL | *x = (1,);
| ^^^^^^^^^ `x` is a `&` reference, so the data it refers to cannot be written | ^^^^^^^^^ `x` is a `&` reference, so the data it refers to cannot be written
error[E0594]: cannot assign to `x.0` which is behind a `&` reference error[E0594]: cannot assign to `x.0`, which is behind a `&` reference
--> $DIR/mutability-errors.rs:10:5 --> $DIR/mutability-errors.rs:10:5
| |
LL | fn named_ref(x: &(i32,)) { LL | fn named_ref(x: &(i32,)) {
...@@ -57,7 +57,7 @@ error[E0596]: cannot borrow data in a `&` reference as mutable ...@@ -57,7 +57,7 @@ error[E0596]: cannot borrow data in a `&` reference as mutable
LL | &mut f().0; LL | &mut f().0;
| ^^^^^^^^^^ cannot borrow as mutable | ^^^^^^^^^^ cannot borrow as mutable
error[E0594]: cannot assign to `*x` which is behind a `*const` pointer error[E0594]: cannot assign to `*x`, which is behind a `*const` pointer
--> $DIR/mutability-errors.rs:23:5 --> $DIR/mutability-errors.rs:23:5
| |
LL | unsafe fn named_ptr(x: *const (i32,)) { LL | unsafe fn named_ptr(x: *const (i32,)) {
...@@ -65,7 +65,7 @@ LL | unsafe fn named_ptr(x: *const (i32,)) { ...@@ -65,7 +65,7 @@ LL | unsafe fn named_ptr(x: *const (i32,)) {
LL | *x = (1,); LL | *x = (1,);
| ^^^^^^^^^ `x` is a `*const` pointer, so the data it refers to cannot be written | ^^^^^^^^^ `x` is a `*const` pointer, so the data it refers to cannot be written
error[E0594]: cannot assign to `x.0` which is behind a `*const` pointer error[E0594]: cannot assign to `x.0`, which is behind a `*const` pointer
--> $DIR/mutability-errors.rs:24:5 --> $DIR/mutability-errors.rs:24:5
| |
LL | unsafe fn named_ptr(x: *const (i32,)) { LL | unsafe fn named_ptr(x: *const (i32,)) {
......
...@@ -46,5 +46,5 @@ pub fn with_tuple() { ...@@ -46,5 +46,5 @@ pub fn with_tuple() {
let mut y = 0; let mut y = 0;
let x = (&y,); let x = (&y,);
*x.0 = 1; *x.0 = 1;
//~^ ERROR cannot assign to `*x.0` which is behind a `&` reference //~^ ERROR cannot assign to `*x.0`, which is behind a `&` reference
} }
...@@ -90,7 +90,7 @@ LL | let _ = &mut z.x; ...@@ -90,7 +90,7 @@ LL | let _ = &mut z.x;
LL | let _ = &mut w.x; LL | let _ = &mut w.x;
| ^^^^^^^^ `w` is a `&` reference, so the data it refers to cannot be borrowed as mutable | ^^^^^^^^ `w` is a `&` reference, so the data it refers to cannot be borrowed as mutable
error[E0594]: cannot assign to `*x.0` which is behind a `&` reference error[E0594]: cannot assign to `*x.0`, which is behind a `&` reference
--> $DIR/issue-39544.rs:48:5 --> $DIR/issue-39544.rs:48:5
| |
LL | *x.0 = 1; LL | *x.0 = 1;
......
...@@ -5,6 +5,6 @@ struct FancyNum { ...@@ -5,6 +5,6 @@ struct FancyNum {
fn main() { fn main() {
let mut fancy = FancyNum{ num: 5 }; let mut fancy = FancyNum{ num: 5 };
let fancy_ref = &(&mut fancy); let fancy_ref = &(&mut fancy);
fancy_ref.num = 6; //~ ERROR cannot assign to `fancy_ref.num` which is behind a `&` reference fancy_ref.num = 6; //~ ERROR cannot assign to `fancy_ref.num`, which is behind a `&` reference
println!("{}", fancy_ref.num); println!("{}", fancy_ref.num);
} }
error[E0594]: cannot assign to `fancy_ref.num` which is behind a `&` reference error[E0594]: cannot assign to `fancy_ref.num`, which is behind a `&` reference
--> $DIR/E0389.rs:8:5 --> $DIR/E0389.rs:8:5
| |
LL | let fancy_ref = &(&mut fancy); LL | let fancy_ref = &(&mut fancy);
......
fn main() { fn main() {
let ref my_ref @ _ = 0; let ref my_ref @ _ = 0;
*my_ref = 0; //~ ERROR cannot assign to `*my_ref` which is behind a `&` reference [E0594] *my_ref = 0; //~ ERROR cannot assign to `*my_ref`, which is behind a `&` reference [E0594]
} }
error[E0594]: cannot assign to `*my_ref` which is behind a `&` reference error[E0594]: cannot assign to `*my_ref`, which is behind a `&` reference
--> $DIR/issue-51244.rs:3:5 --> $DIR/issue-51244.rs:3:5
| |
LL | let ref my_ref @ _ = 0; LL | let ref my_ref @ _ = 0;
......
...@@ -3,10 +3,10 @@ fn main() { ...@@ -3,10 +3,10 @@ fn main() {
//~^ HELP consider changing this to be a mutable reference //~^ HELP consider changing this to be a mutable reference
//~| SUGGESTION &mut 16 //~| SUGGESTION &mut 16
*foo = 32; *foo = 32;
//~^ ERROR cannot assign to `*foo` which is behind a `&` reference //~^ ERROR cannot assign to `*foo`, which is behind a `&` reference
let bar = foo; let bar = foo;
//~^ HELP consider changing this to be a mutable reference //~^ HELP consider changing this to be a mutable reference
//~| SUGGESTION &mut i32 //~| SUGGESTION &mut i32
*bar = 64; *bar = 64;
//~^ ERROR cannot assign to `*bar` which is behind a `&` reference //~^ ERROR cannot assign to `*bar`, which is behind a `&` reference
} }
error[E0594]: cannot assign to `*foo` which is behind a `&` reference error[E0594]: cannot assign to `*foo`, which is behind a `&` reference
--> $DIR/issue-51515.rs:5:5 --> $DIR/issue-51515.rs:5:5
| |
LL | let foo = &16; LL | let foo = &16;
...@@ -7,7 +7,7 @@ LL | let foo = &16; ...@@ -7,7 +7,7 @@ LL | let foo = &16;
LL | *foo = 32; LL | *foo = 32;
| ^^^^^^^^^ `foo` is a `&` reference, so the data it refers to cannot be written | ^^^^^^^^^ `foo` is a `&` reference, so the data it refers to cannot be written
error[E0594]: cannot assign to `*bar` which is behind a `&` reference error[E0594]: cannot assign to `*bar`, which is behind a `&` reference
--> $DIR/issue-51515.rs:10:5 --> $DIR/issue-51515.rs:10:5
| |
LL | let bar = foo; LL | let bar = foo;
......
error[E0594]: cannot assign to `self.how_hungry` which is behind a `&` reference error[E0594]: cannot assign to `self.how_hungry`, which is behind a `&` reference
--> $DIR/mutable-class-fields-2.rs:9:5 --> $DIR/mutable-class-fields-2.rs:9:5
| |
LL | pub fn eat(&self) { LL | pub fn eat(&self) {
......
error[E0594]: cannot assign to `fancy_ref.num` which is behind a `&` reference error[E0594]: cannot assign to `fancy_ref.num`, which is behind a `&` reference
--> $DIR/issue-47388.rs:8:5 --> $DIR/issue-47388.rs:8:5
| |
LL | let fancy_ref = &(&mut fancy); LL | let fancy_ref = &(&mut fancy);
......
fn main() { fn main() {
let ref my_ref @ _ = 0; let ref my_ref @ _ = 0;
*my_ref = 0; *my_ref = 0;
//~^ ERROR cannot assign to `*my_ref` which is behind a `&` reference [E0594] //~^ ERROR cannot assign to `*my_ref`, which is behind a `&` reference [E0594]
} }
error[E0594]: cannot assign to `*my_ref` which is behind a `&` reference error[E0594]: cannot assign to `*my_ref`, which is behind a `&` reference
--> $DIR/issue-51244.rs:3:5 --> $DIR/issue-51244.rs:3:5
| |
LL | let ref my_ref @ _ = 0; LL | let ref my_ref @ _ = 0;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
fn f(x: &i32) { fn f(x: &i32) {
let g = &x; let g = &x;
*x = 0; //~ ERROR cannot assign to `*x` which is behind a `&` reference *x = 0; //~ ERROR cannot assign to `*x`, which is behind a `&` reference
//~| ERROR cannot assign to `*x` because it is borrowed //~| ERROR cannot assign to `*x` because it is borrowed
g; g;
} }
......
error[E0594]: cannot assign to `*x` which is behind a `&` reference error[E0594]: cannot assign to `*x`, which is behind a `&` reference
--> $DIR/issue-57989.rs:5:5 --> $DIR/issue-57989.rs:5:5
| |
LL | fn f(x: &i32) { LL | fn f(x: &i32) {
......
...@@ -23,8 +23,8 @@ fn tuple() { ...@@ -23,8 +23,8 @@ fn tuple() {
_x1 = U; //~ ERROR cannot assign twice to immutable variable _x1 = U; //~ ERROR cannot assign twice to immutable variable
let _x0_hold = &mut tup.0; //~ ERROR cannot borrow `tup.0` as mutable because it is also let _x0_hold = &mut tup.0; //~ ERROR cannot borrow `tup.0` as mutable because it is also
let (ref mut _x0_hold, ..) = tup; //~ ERROR cannot borrow `tup.0` as mutable because it is also let (ref mut _x0_hold, ..) = tup; //~ ERROR cannot borrow `tup.0` as mutable because it is also
*_x0 = U; //~ ERROR cannot assign to `*_x0` which is behind a `&` reference *_x0 = U; //~ ERROR cannot assign to `*_x0`, which is behind a `&` reference
*_x2 = U; //~ ERROR cannot assign to `*_x2` which is behind a `&` reference *_x2 = U; //~ ERROR cannot assign to `*_x2`, which is behind a `&` reference
drop(tup.1); //~ ERROR use of moved value: `tup.1` drop(tup.1); //~ ERROR use of moved value: `tup.1`
let _x1_hold = &tup.1; //~ ERROR borrow of moved value: `tup.1` let _x1_hold = &tup.1; //~ ERROR borrow of moved value: `tup.1`
let (.., ref mut _x3) = tup; let (.., ref mut _x3) = tup;
......
...@@ -101,7 +101,7 @@ LL | let (ref mut _x0_hold, ..) = tup; ...@@ -101,7 +101,7 @@ LL | let (ref mut _x0_hold, ..) = tup;
LL | *_x0 = U; LL | *_x0 = U;
| -------- immutable borrow later used here | -------- immutable borrow later used here
error[E0594]: cannot assign to `*_x0` which is behind a `&` reference error[E0594]: cannot assign to `*_x0`, which is behind a `&` reference
--> $DIR/borrowck-move-ref-pattern.rs:26:5 --> $DIR/borrowck-move-ref-pattern.rs:26:5
| |
LL | let (ref _x0, _x1, ref _x2, ..) = tup; LL | let (ref _x0, _x1, ref _x2, ..) = tup;
...@@ -110,7 +110,7 @@ LL | let (ref _x0, _x1, ref _x2, ..) = tup; ...@@ -110,7 +110,7 @@ LL | let (ref _x0, _x1, ref _x2, ..) = tup;
LL | *_x0 = U; LL | *_x0 = U;
| ^^^^^^^^ `_x0` is a `&` reference, so the data it refers to cannot be written | ^^^^^^^^ `_x0` is a `&` reference, so the data it refers to cannot be written
error[E0594]: cannot assign to `*_x2` which is behind a `&` reference error[E0594]: cannot assign to `*_x2`, which is behind a `&` reference
--> $DIR/borrowck-move-ref-pattern.rs:27:5 --> $DIR/borrowck-move-ref-pattern.rs:27:5
| |
LL | let (ref _x0, _x1, ref _x2, ..) = tup; LL | let (ref _x0, _x1, ref _x2, ..) = tup;
......
...@@ -6,17 +6,17 @@ enum Wrapper { ...@@ -6,17 +6,17 @@ enum Wrapper {
pub fn main() { pub fn main() {
let Wrap(x) = &Wrap(3); let Wrap(x) = &Wrap(3);
*x += 1; //~ ERROR cannot assign to `*x` which is behind a `&` reference *x += 1; //~ ERROR cannot assign to `*x`, which is behind a `&` reference
if let Some(x) = &Some(3) { if let Some(x) = &Some(3) {
*x += 1; //~ ERROR cannot assign to `*x` which is behind a `&` reference *x += 1; //~ ERROR cannot assign to `*x`, which is behind a `&` reference
} else { } else {
panic!(); panic!();
} }
while let Some(x) = &Some(3) { while let Some(x) = &Some(3) {
*x += 1; //~ ERROR cannot assign to `*x` which is behind a `&` reference *x += 1; //~ ERROR cannot assign to `*x`, which is behind a `&` reference
break; break;
} }
} }
error[E0594]: cannot assign to `*x` which is behind a `&` reference error[E0594]: cannot assign to `*x`, which is behind a `&` reference
--> $DIR/enum.rs:9:5 --> $DIR/enum.rs:9:5
| |
LL | *x += 1; LL | *x += 1;
| ^^^^^^^ `x` is a `&` reference, so the data it refers to cannot be written | ^^^^^^^ `x` is a `&` reference, so the data it refers to cannot be written
error[E0594]: cannot assign to `*x` which is behind a `&` reference error[E0594]: cannot assign to `*x`, which is behind a `&` reference
--> $DIR/enum.rs:13:9 --> $DIR/enum.rs:13:9
| |
LL | *x += 1; LL | *x += 1;
| ^^^^^^^ `x` is a `&` reference, so the data it refers to cannot be written | ^^^^^^^ `x` is a `&` reference, so the data it refers to cannot be written
error[E0594]: cannot assign to `*x` which is behind a `&` reference error[E0594]: cannot assign to `*x`, which is behind a `&` reference
--> $DIR/enum.rs:19:9 --> $DIR/enum.rs:19:9
| |
LL | *x += 1; LL | *x += 1;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
fn main() { fn main() {
match &&Some(5i32) { match &&Some(5i32) {
Some(n) => { Some(n) => {
*n += 1; //~ ERROR cannot assign to `*n` which is behind a `&` reference *n += 1; //~ ERROR cannot assign to `*n`, which is behind a `&` reference
let _ = n; let _ = n;
} }
None => {}, None => {},
...@@ -12,7 +12,7 @@ fn main() { ...@@ -12,7 +12,7 @@ fn main() {
match &mut &Some(5i32) { match &mut &Some(5i32) {
Some(n) => { Some(n) => {
*n += 1; //~ ERROR cannot assign to `*n` which is behind a `&` reference *n += 1; //~ ERROR cannot assign to `*n`, which is behind a `&` reference
let _ = n; let _ = n;
} }
None => {}, None => {},
...@@ -20,7 +20,7 @@ fn main() { ...@@ -20,7 +20,7 @@ fn main() {
match &&mut Some(5i32) { match &&mut Some(5i32) {
Some(n) => { Some(n) => {
*n += 1; //~ ERROR cannot assign to `*n` which is behind a `&` reference *n += 1; //~ ERROR cannot assign to `*n`, which is behind a `&` reference
let _ = n; let _ = n;
} }
None => {}, None => {},
......
error[E0594]: cannot assign to `*n` which is behind a `&` reference error[E0594]: cannot assign to `*n`, which is behind a `&` reference
--> $DIR/explicit-mut.rs:7:13 --> $DIR/explicit-mut.rs:7:13
| |
LL | *n += 1; LL | *n += 1;
| ^^^^^^^ `n` is a `&` reference, so the data it refers to cannot be written | ^^^^^^^ `n` is a `&` reference, so the data it refers to cannot be written
error[E0594]: cannot assign to `*n` which is behind a `&` reference error[E0594]: cannot assign to `*n`, which is behind a `&` reference
--> $DIR/explicit-mut.rs:15:13 --> $DIR/explicit-mut.rs:15:13
| |
LL | *n += 1; LL | *n += 1;
| ^^^^^^^ `n` is a `&` reference, so the data it refers to cannot be written | ^^^^^^^ `n` is a `&` reference, so the data it refers to cannot be written
error[E0594]: cannot assign to `*n` which is behind a `&` reference error[E0594]: cannot assign to `*n`, which is behind a `&` reference
--> $DIR/explicit-mut.rs:23:13 --> $DIR/explicit-mut.rs:23:13
| |
LL | *n += 1; LL | *n += 1;
......
error[E0594]: cannot assign to `self.0` which is behind a `&` reference error[E0594]: cannot assign to `self.0`, which is behind a `&` reference
--> $DIR/issue-68049-1.rs:7:9 --> $DIR/issue-68049-1.rs:7:9
| |
LL | self.0 += 1; LL | self.0 += 1;
......
error[E0594]: cannot assign to `*input` which is behind a `&` reference error[E0594]: cannot assign to `*input`, which is behind a `&` reference
--> $DIR/issue-68049-2.rs:9:7 --> $DIR/issue-68049-2.rs:9:7
| |
LL | fn example(&self, input: &i32); // should suggest here LL | fn example(&self, input: &i32); // should suggest here
...@@ -7,7 +7,7 @@ LL | fn example(&self, input: &i32); // should suggest here ...@@ -7,7 +7,7 @@ LL | fn example(&self, input: &i32); // should suggest here
LL | *input = self.0; LL | *input = self.0;
| ^^^^^^^^^^^^^^^ `input` is a `&` reference, so the data it refers to cannot be written | ^^^^^^^^^^^^^^^ `input` is a `&` reference, so the data it refers to cannot be written
error[E0594]: cannot assign to `self.0` which is behind a `&` reference error[E0594]: cannot assign to `self.0`, which is behind a `&` reference
--> $DIR/issue-68049-2.rs:17:5 --> $DIR/issue-68049-2.rs:17:5
| |
LL | fn example(&self, input: &i32); // should suggest here LL | fn example(&self, input: &i32); // should suggest here
......
error[E0594]: cannot assign to `t.v` which is behind a `&` reference error[E0594]: cannot assign to `t.v`, which is behind a `&` reference
--> $DIR/suggest-mut-method-for-loop.rs:14:9 --> $DIR/suggest-mut-method-for-loop.rs:14:9
| |
LL | for mut t in buzz.values() { LL | for mut t in buzz.values() {
......
error[E0594]: cannot assign to `self.0` which is behind a `&` reference error[E0594]: cannot assign to `self.0`, which is behind a `&` reference
--> $DIR/suggest-ref-mut.rs:7:9 --> $DIR/suggest-ref-mut.rs:7:9
| |
LL | fn zap(&self) { LL | fn zap(&self) {
...@@ -7,7 +7,7 @@ LL | fn zap(&self) { ...@@ -7,7 +7,7 @@ LL | fn zap(&self) {
LL | self.0 = 32; LL | self.0 = 32;
| ^^^^^^^^^^^ `self` is a `&` reference, so the data it refers to cannot be written | ^^^^^^^^^^^ `self` is a `&` reference, so the data it refers to cannot be written
error[E0594]: cannot assign to `*foo` which is behind a `&` reference error[E0594]: cannot assign to `*foo`, which is behind a `&` reference
--> $DIR/suggest-ref-mut.rs:16:5 --> $DIR/suggest-ref-mut.rs:16:5
| |
LL | let ref foo = 16; LL | let ref foo = 16;
...@@ -16,7 +16,7 @@ LL | let ref foo = 16; ...@@ -16,7 +16,7 @@ LL | let ref foo = 16;
LL | *foo = 32; LL | *foo = 32;
| ^^^^^^^^^ `foo` is a `&` reference, so the data it refers to cannot be written | ^^^^^^^^^ `foo` is a `&` reference, so the data it refers to cannot be written
error[E0594]: cannot assign to `*bar` which is behind a `&` reference error[E0594]: cannot assign to `*bar`, which is behind a `&` reference
--> $DIR/suggest-ref-mut.rs:21:9 --> $DIR/suggest-ref-mut.rs:21:9
| |
LL | if let Some(ref bar) = Some(16) { LL | if let Some(ref bar) = Some(16) {
...@@ -25,7 +25,7 @@ LL | if let Some(ref bar) = Some(16) { ...@@ -25,7 +25,7 @@ LL | if let Some(ref bar) = Some(16) {
LL | *bar = 32; LL | *bar = 32;
| ^^^^^^^^^ `bar` is a `&` reference, so the data it refers to cannot be written | ^^^^^^^^^ `bar` is a `&` reference, so the data it refers to cannot be written
error[E0594]: cannot assign to `*quo` which is behind a `&` reference error[E0594]: cannot assign to `*quo`, which is behind a `&` reference
--> $DIR/suggest-ref-mut.rs:25:22 --> $DIR/suggest-ref-mut.rs:25:22
| |
LL | ref quo => { *quo = 32; }, LL | ref quo => { *quo = 32; },
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册