]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/borrowck-call-method-from-mut-aliasable.stderr
Rollup merge of #106441 - mllken:abstract-socket-noref, r=joshtriplett
[rust.git] / tests / 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 |     x.h();
5    |     ^^^^^ `x` is a `&` reference, so the data it refers to cannot be borrowed as mutable
6    |
7 help: consider changing this to be a mutable reference
8    |
9 LL | fn b(x: &mut Foo) {
10    |         ~~~~~~~~
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0596`.