]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/issue-68049-2.stderr
Rollup merge of #90420 - GuillaumeGomez:rustdoc-internals-feature, r=camelid
[rust.git] / src / test / ui / suggestions / issue-68049-2.stderr
1 error[E0594]: cannot assign to `*input`, which is behind a `&` reference
2   --> $DIR/issue-68049-2.rs:9:7
3    |
4 LL |   fn example(&self, input: &i32); // should suggest here
5    |                            ---- help: consider changing that to be a mutable reference: `&mut i32`
6 ...
7 LL |       *input = self.0;
8    |       ^^^^^^^^^^^^^^^ `input` is a `&` reference, so the data it refers to cannot be written
9
10 error[E0594]: cannot assign to `self.0`, which is behind a `&` reference
11   --> $DIR/issue-68049-2.rs:17:5
12    |
13 LL |   fn example(&self, input: &i32); // should suggest here
14    |              ----- help: consider changing that to be a mutable reference: `&mut self`
15 ...
16 LL |     self.0 += *input;
17    |     ^^^^^^^^^^^^^^^^ `self` is a `&` reference, so the data it refers to cannot be written
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0594`.