rust/src/test/ui/did_you_mean/issue-38147-2.stderr

13 lines
424 B
Plaintext
Raw Normal View History

error[E0596]: cannot borrow `*self.s` as mutable, as it is behind a `&` reference
2018-12-25 15:56:47 +00:00
--> $DIR/issue-38147-2.rs:7:9
|
2018-02-23 00:42:32 +00:00
LL | s: &'a String
| ---------- help: consider changing this to be mutable: `&'a mut String`
...
2018-02-23 00:42:32 +00:00
LL | self.s.push('x');
2021-09-16 20:01:22 +00:00
| ^^^^^^^^^^^^^^^^ cannot borrow as mutable
error: aborting due to previous error
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0596`.