]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/borrowck-object-mutability.stderr
Rollup merge of #87922 - Manishearth:c-enum-target-spec, r=nagisa,eddyb
[rust.git] / src / test / ui / span / borrowck-object-mutability.stderr
1 error[E0596]: cannot borrow `*x` as mutable, as it is behind a `&` reference
2   --> $DIR/borrowck-object-mutability.rs:8:5
3    |
4 LL | fn borrowed_receiver(x: &dyn Foo) {
5    |                         -------- help: consider changing this to be a mutable reference: `&mut dyn Foo`
6 LL |     x.borrowed();
7 LL |     x.borrowed_mut();
8    |     ^ `x` is a `&` reference, so the data it refers to cannot be borrowed as mutable
9
10 error[E0596]: cannot borrow `*x` as mutable, as `x` is not declared as mutable
11   --> $DIR/borrowck-object-mutability.rs:18:5
12    |
13 LL | fn owned_receiver(x: Box<dyn Foo>) {
14    |                   - help: consider changing this to be mutable: `mut x`
15 LL |     x.borrowed();
16 LL |     x.borrowed_mut();
17    |     ^ cannot borrow as mutable
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0596`.