#![allow(unused_variables)] fn main() { use std::collections::BinaryHeap; let heap = BinaryHeap::from([1, 3]); assert_eq!(heap.len(), 2); }