blob: 4875e27ef45521f701f21879f76131f44c46906a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0596]: cannot borrow immutable borrowed content `*x` as mutable
--> $DIR/borrowck-call-method-from-mut-aliasable.rs:17:5
|
LL | fn b(x: &Foo) {
| ---- use `&mut Foo` here to make mutable
LL | x.f();
LL | x.h(); //~ ERROR cannot borrow
| ^ cannot borrow as mutable
error: aborting due to previous error
For more information about this error, try `rustc --explain E0596`.
|