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

13 lines
400 B
Plaintext
Raw Normal View History

error[E0596]: cannot borrow borrowed content `*self.s` of immutable binding as mutable
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
| ---------- use `&'a mut String` here to make mutable
...
2018-02-23 00:42:32 +00:00
LL | self.s.push('x');
| ^^^^^^ 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`.