blob: ace6cdce841a7db557b136fc4f59421da42981b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use std::collections::BinaryHeap;
fn main() {
let mut heap: BinaryHeap<i32> = BinaryHeap::new();
let borrow = heap.peek_mut();
match (borrow, ()) {
(Some(_), ()) => {
println!("{:?}", heap); //~ ERROR cannot borrow `heap` as immutable
}
_ => {}
};
}
|