]> git.lizzy.rs Git - rust.git/blob - tests/ui/did_you_mean/issue-38147-3.stderr
Rollup merge of #104965 - zacklukem:p-option-as_ref-docs, r=scottmcm
[rust.git] / tests / ui / did_you_mean / issue-38147-3.stderr
1 error[E0596]: cannot borrow `*self.s` as mutable, as it is behind a `&` reference
2   --> $DIR/issue-38147-3.rs:7:9
3    |
4 LL |         self.s.push('x');
5    |         ^^^^^^^^^^^^^^^^ cannot borrow as mutable
6    |
7 help: consider changing this to be mutable
8    |
9 LL |     s: &'a mut String
10    |            +++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0596`.