We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa7e470 commit a2ac0ffCopy full SHA for a2ac0ff
library/alloc/src/slice.rs
@@ -77,11 +77,13 @@ pub use core::slice::{SplitInclusive, SplitInclusiveMut};
77
// HACK(japaric) needed for the implementation of `vec!` macro during testing
78
// N.B., see the `hack` module in this file for more details.
79
#[cfg(test)]
80
+#[allow(missing_docs)]
81
pub use hack::into_vec;
82
83
// HACK(japaric) needed for the implementation of `Vec::clone` during testing
84
85
86
87
pub use hack::to_vec;
88
89
// HACK(japaric): With cfg(test) `impl [T]` is not available, these three
0 commit comments