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

13 lines
442 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
|
2017-11-20 06:13:27 -06:00
16 | 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-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0596"