2017-05-27 12:58:52 -05:00
|
|
|
error[E0596]: cannot borrow immutable argument `self` as mutable
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-34126.rs:6:23
|
2016-11-02 01:15:02 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | self.run(&mut self);
|
2016-11-02 01:15:02 -05:00
|
|
|
| ^^^^
|
|
|
|
| |
|
|
|
|
| cannot reborrow mutably
|
2017-07-05 11:58:22 -05:00
|
|
|
| try removing `&mut` here
|
2016-11-02 01:15:02 -05:00
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to previous error
|
2016-11-02 01:15:02 -05:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0596`.
|