]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-11192.stderr
New upstream version 1.54.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-11192.stderr
1 error[E0502]: cannot borrow `*ptr` as immutable because it is also borrowed as mutable
2 --> $DIR/issue-11192.rs:20:10
3 |
4 LL | let mut test = |foo: &Foo| {
5 | ----------- mutable borrow occurs here
6 LL | println!("access {}", foo.x);
7 LL | ptr = box Foo { x: ptr.x + 1 };
8 | --- first borrow occurs due to use of `ptr` in closure
9 ...
10 LL | test(&*ptr);
11 | ---- ^^^^^ immutable borrow occurs here
12 | |
13 | mutable borrow later used by call
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0502`.