]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/borrowck-call-method-from-mut-aliasable.stderr
Rollup merge of #87922 - Manishearth:c-enum-target-spec, r=nagisa,eddyb
[rust.git] / src / test / ui / span / borrowck-call-method-from-mut-aliasable.stderr
1 error[E0596]: cannot borrow `*x` as mutable, as it is behind a `&` reference
2   --> $DIR/borrowck-call-method-from-mut-aliasable.rs:17:5
3    |
4 LL | fn b(x: &Foo) {
5    |         ---- help: consider changing this to be a mutable reference: `&mut Foo`
6 LL |     x.f();
7 LL |     x.h();
8    |     ^ `x` is a `&` reference, so the data it refers to cannot be borrowed as mutable
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0596`.