blob: 3104b20aca4e6428bdb75035eed5e9ef7681934e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#[derive(Copy, Clone)]
struct S;
impl S {
fn mutate(&mut self) {
}
}
fn func(arg: S) {
//~^ HELP consider changing this to be mutable
//~| SUGGESTION mut arg
arg.mutate();
//~^ ERROR cannot borrow `arg` as mutable, as it is not declared as mutable
}
fn main() {
let local = S;
//~^ HELP consider changing this to be mutable
//~| SUGGESTION mut local
local.mutate();
//~^ ERROR cannot borrow `local` as mutable, as it is not declared as mutable
}
|