rust/tests/ui/augmented-assignments.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
607 B
Rust
Raw Normal View History

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