mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
29 lines
1 KiB
Text
29 lines
1 KiB
Text
error[E0596]: cannot borrow `self` as mutable, as it is not declared as mutable
|
|
--> $DIR/issue-111554.rs:5:16
|
|
|
|
|
LL | || bar(&mut self);
|
|
| ^^^^^^^^^ cannot borrow as mutable
|
|
|
|
error[E0596]: cannot borrow `self` as mutable, as it is not declared as mutable
|
|
--> $DIR/issue-111554.rs:10:16
|
|
|
|
|
LL | || bar(&mut self);
|
|
| ^^^^^^^^^ cannot borrow as mutable
|
|
|
|
error[E0596]: cannot borrow data in a `&` reference as mutable
|
|
--> $DIR/issue-111554.rs:10:16
|
|
|
|
|
LL | || bar(&mut self);
|
|
| ^^^^^^^^^ cannot borrow as mutable
|
|
|
|
error[E0596]: cannot borrow `self` as mutable, as it is not declared as mutable
|
|
--> $DIR/issue-111554.rs:21:16
|
|
|
|
|
LL | pub fn quux(self) {
|
|
| ---- help: consider changing this to be mutable: `mut self`
|
|
LL | || bar(&mut self);
|
|
| ^^^^^^^^^ cannot borrow as mutable
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0596`.
|