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

13 lines
432 B
Plaintext
Raw Normal View History

2017-05-27 12:58:52 -05:00
error[E0596]: cannot borrow immutable argument `self` as mutable
2016-11-02 01:15:02 -05:00
--> $DIR/issue-34126.rs:16:23
|
2018-02-22 18:42:32 -06:00
LL | self.run(&mut self); //~ ERROR cannot borrow
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`.