]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-5239-1.stderr
Rollup merge of #53213 - tmccombs:stable-ipconstructors, r=KodrAus
[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:14:30
3    |
4 LL |     let x = |ref x: isize| { x += 1; };
5    |                              -^^^^^
6    |                              |
7    |                              cannot use `+=` on type `&isize`
8    |
9    = help: `+=` can be used on 'isize', you can dereference `x`: `*x`
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0368`.