summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-assign-to-andmut-in-aliasable-loc.stderr
blob: 0475df447445df05067ce82fab23feb4ebe0b11e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0594]: cannot assign to `*s.pointer`, which is behind a `&` reference
  --> $DIR/borrowck-assign-to-andmut-in-aliasable-loc.rs:9:5
   |
LL | fn a(s: &S) {
   |         -- help: consider changing this to be a mutable reference: `&mut S<'_>`
LL |     *s.pointer += 1;
   |     ^^^^^^^^^^^^^^^ `s` is a `&` reference, so the data it refers to cannot be written

error[E0594]: cannot assign to `*s.pointer`, which is behind a `&` reference
  --> $DIR/borrowck-assign-to-andmut-in-aliasable-loc.rs:17:5
   |
LL | fn c(s: & &mut S) {
   |         -------- help: consider changing this to be a mutable reference: `&mut &mut S<'_>`
LL |     *s.pointer += 1;
   |     ^^^^^^^^^^^^^^^ `s` is a `&` reference, so the data it refers to cannot be written

error: aborting due to 2 previous errors

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