summary refs log tree commit diff
path: root/src/test/ui/span/borrowck-call-method-from-mut-aliasable.stderr
blob: a18d3c55394df8f113b35110b1f27ae02802604e (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: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`.