2017-12-31 17:32:41 -06:00
|
|
|
error[E0596]: cannot borrow borrowed content `*self.s` of immutable binding as mutable
|
2017-01-17 01:42:11 -06:00
|
|
|
--> $DIR/issue-38147-2.rs:17:9
|
|
|
|
|
|
|
|
|
12 | s: &'a String
|
2017-03-26 11:35:46 -05:00
|
|
|
| ---------- use `&'a mut String` here to make mutable
|
2017-01-17 01:42:11 -06:00
|
|
|
...
|
2017-12-31 17:32:41 -06:00
|
|
|
17 | self.s.push('x');
|
2017-01-17 01:42:11 -06:00
|
|
|
| ^^^^^^ cannot borrow as mutable
|
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to previous error
|
2017-01-17 01:42:11 -06:00
|
|
|
|