Point at statics and consts being mutable borrowed or written to:
```
error[E0594]: cannot assign to immutable static item `NUM`
--> $DIR/E0594.rs:4:5
|
LL | static NUM: i32 = 18;
| --------------- this `static` cannot be written to
...
LL | NUM = 20;
| ^^^^^^^^ cannot assign
```
Point at the expression that couldn't be mutably borrowed from a pattern:
```
error[E0596]: cannot borrow data in a `&` reference as mutable
--> $DIR/mut-pattern-of-immutable-borrow.rs:19:14
|
LL | match &arg.field {
| ---------- this cannot be borrowed as mutable
LL | Some(ref mut s) => s.push('a'),
| ^^^^^^^^^ cannot borrow as mutable
```
31 lines
669 B
Rust
31 lines
669 B
Rust
struct S {
|
|
field: Option<String>,
|
|
}
|
|
|
|
fn a(arg: &mut S) {
|
|
match arg.field { //~ ERROR cannot move out of `arg.field`
|
|
Some(s) => s.push('a'), //~ ERROR cannot borrow `s` as mutable
|
|
None => {}
|
|
}
|
|
}
|
|
fn b(arg: &mut S) {
|
|
match &arg.field { //~ ERROR cannot move out of a shared reference
|
|
Some(mut s) => s.push('a'),
|
|
None => {}
|
|
}
|
|
}
|
|
fn c(arg: &mut S) {
|
|
match &arg.field {
|
|
Some(ref mut s) => s.push('a'), //~ ERROR cannot borrow data in a `&` reference as mutable
|
|
None => {}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let mut s = S {
|
|
field: Some("a".to_owned()),
|
|
};
|
|
a(&mut s);
|
|
b(&mut s);
|
|
c(&mut s);
|
|
}
|