2015-09-11 00:16:57 +00:00
|
|
|
use std::ops::AddAssign;
|
|
|
|
|
|
|
|
struct Int(i32);
|
|
|
|
|
|
|
|
impl AddAssign for Int {
|
|
|
|
fn add_assign(&mut self, _: Int) {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2023-01-15 03:06:44 +00:00
|
|
|
let mut x = Int(1); //~ NOTE binding `x` declared here
|
2019-04-22 07:40:08 +00:00
|
|
|
x
|
|
|
|
//~^ NOTE borrow of `x` occurs here
|
2015-09-11 00:16:57 +00:00
|
|
|
+=
|
2019-04-22 07:40:08 +00:00
|
|
|
x;
|
|
|
|
//~^ ERROR cannot move out of `x` because it is borrowed
|
|
|
|
//~| move out of `x` occurs here
|
2015-09-11 00:16:57 +00:00
|
|
|
|
|
|
|
let y = Int(2);
|
2019-04-22 07:40:08 +00:00
|
|
|
//~^ HELP consider changing this to be mutable
|
2023-01-01 08:06:31 +00:00
|
|
|
//~| SUGGESTION mut
|
2019-04-22 07:40:08 +00:00
|
|
|
y //~ ERROR cannot borrow `y` as mutable, as it is not declared as mutable
|
|
|
|
//~| cannot borrow as mutable
|
2015-09-11 00:16:57 +00:00
|
|
|
+=
|
|
|
|
Int(1);
|
|
|
|
}
|