update tracking issue for const_binary_heap_new_in · model-checking/verify-rust-std@4952644 (original) (raw)

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line number Diff line number Diff line change
@@ -487,7 +487,7 @@ impl<T: Ord, A: Allocator> BinaryHeap<T, A> {
487 487 /// heap.push(4);
488 488 /// ```
489 489 #[unstable(feature = "allocator_api", issue = "32838")]
490 -#[rustc_const_unstable(feature = "const_binary_heap_new_in", issue = "112353")]
490 +#[rustc_const_unstable(feature = "const_binary_heap_new_in", issue = "125961")]
491 491 #[must_use]
492 492 pub const fn new_in(alloc: A) -> BinaryHeap<T, A> {
493 493 BinaryHeap { data: Vec::new_in(alloc) }