We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2cc5d72 + 1e322e3 commit dbf589fCopy full SHA for dbf589f
library/std/src/collections/mod.rs
@@ -401,9 +401,10 @@
401
#![stable(feature = "rust1", since = "1.0.0")]
402
403
#[stable(feature = "rust1", since = "1.0.0")]
404
-#[rustc_deprecated(reason = "moved to `std::ops::Bound`", since = "1.52.0")]
+// FIXME(#82080) The deprecation here is only theoretical, and does not actually produce a warning.
405
+#[rustc_deprecated(reason = "moved to `std::ops::Bound`", since = "1.26.0")]
406
#[doc(hidden)]
-pub type Bound<T> = crate::ops::Bound<T>;
407
+pub use crate::ops::Bound;
408
409
410
pub use alloc_crate::collections::{binary_heap, btree_map, btree_set};
0 commit comments