blob: a18d3c55394df8f113b35110b1f27ae02802604e [file] [log] [blame]
error[E0596]: cannot borrow immutable borrowed content `*x` as mutable
--> $DIR/borrowck-call-method-from-mut-aliasable.rs:27: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`.