]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-5239-1.stderr
Auto merge of #57119 - jethrogb:jb/sgx-os-mod2, r=joshtriplett
[rust.git] / src / test / ui / issues / issue-5239-1.stderr
1 error[E0368]: binary assignment operation `+=` cannot be applied to type `&isize`
2   --> $DIR/issue-5239-1.rs:4:30
3    |
4 LL |     let x = |ref x: isize| { x += 1; };
5    |                              -^^^^^
6    |                              |
7    |                              cannot use `+=` on type `&isize`
8 help: `+=` can be used on 'isize', you can dereference `x`
9    |
10 LL |     let x = |ref x: isize| { *x += 1; };
11    |                              ^^
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0368`.