summary refs log tree commit diff
path: root/src/test/ui/span/borrowck-object-mutability.stderr
blob: 5bc07949a951ca3798baa467ab257a8d74b5f9f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0596]: cannot borrow immutable borrowed content `*x` as mutable
  --> $DIR/borrowck-object-mutability.rs:19:5
   |
LL | fn borrowed_receiver(x: &Foo) {
   |                         ---- use `&mut Foo` here to make mutable
LL |     x.borrowed();
LL |     x.borrowed_mut(); //~ ERROR cannot borrow
   |     ^ cannot borrow as mutable

error[E0596]: cannot borrow immutable `Box` content `*x` as mutable
  --> $DIR/borrowck-object-mutability.rs:29:5
   |
LL | fn owned_receiver(x: Box<Foo>) {
   |                   - consider changing this to `mut x`
LL |     x.borrowed();
LL |     x.borrowed_mut(); //~ ERROR cannot borrow
   |     ^ cannot borrow as mutable

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0596`.