rust/src/test/ui/did_you_mean/issue-34126.stderr

13 lines
407 B
Plaintext
Raw Normal View History

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
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`.