]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrow-raw-address-of-deref-mutability.stderr
Auto merge of #101768 - sunfishcode:sunfishcode/wasi-stdio-lock-asfd, r=joshtriplett
[rust.git] / src / test / ui / borrowck / borrow-raw-address-of-deref-mutability.stderr
1 error[E0596]: cannot borrow `*x` as mutable, as it is behind a `&` reference
2   --> $DIR/borrow-raw-address-of-deref-mutability.rs:8:13
3    |
4 LL |     let x = &0;
5    |             -- help: consider changing this to be a mutable reference: `&mut 0`
6 LL |
7 LL |     let q = &raw mut *x;
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 it is behind a `*const` pointer
11   --> $DIR/borrow-raw-address-of-deref-mutability.rs:14:13
12    |
13 LL |     let x = &0 as *const i32;
14    |             -- help: consider changing this to be a mutable pointer: `&mut 0`
15 LL |
16 LL |     let q = &raw mut *x;
17    |             ^^^^^^^^^^^ `x` is a `*const` pointer, so the data it refers to cannot be borrowed as mutable
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0596`.