summary refs log tree commit diff
path: root/src/test/ui/issue-47646.stderr
blob: 4bdce85d18b5feff02dbd3340dd7a1ef64f9e79b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0502]: cannot borrow `heap` as immutable because it is also borrowed as mutable
  --> $DIR/issue-47646.rs:22:30
   |
LL |     let borrow = heap.peek_mut();
   |                  ---- mutable borrow occurs here
...
LL |             println!("{:?}", heap); //~ ERROR cannot borrow `heap` as immutable
   |                              ^^^^ immutable borrow occurs here

error: aborting due to previous error

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