]> git.lizzy.rs Git - rust.git/blob - src/test/ui/did_you_mean/issue-38147-1.stderr
Rollup merge of #105955 - Nilstrieb:no-trivial-opt-wrappers-we-have-field-accesses...
[rust.git] / src / test / ui / did_you_mean / issue-38147-1.stderr
1 error[E0596]: cannot borrow `*self.s` as mutable, as it is behind a `&` reference
2   --> $DIR/issue-38147-1.rs:17:9
3    |
4 LL |     fn f(&self) {
5    |          ----- help: consider changing this to be a mutable reference: `&mut self`
6 LL |         self.s.push('x');
7    |         ^^^^^^^^^^^^^^^^ `self` is a `&` reference, so the data it refers to cannot be borrowed as mutable
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0596`.