Skip to content

Commit b95bef0

Browse files
committed
[Clippy] Swap VecArgs::hir to use diagnostic items instead of paths
1 parent 6906fa9 commit b95bef0

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

alloc/src/slice.rs

+1
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,7 @@ impl<T> [T] {
496496
#[rustc_allow_incoherent_impl]
497497
#[stable(feature = "rust1", since = "1.0.0")]
498498
#[inline]
499+
#[cfg_attr(not(test), rustc_diagnostic_item = "slice_into_vec")]
499500
pub fn into_vec<A: Allocator>(self: Box<Self, A>) -> Vec<T, A> {
500501
// N.B., see the `hack` module in this file for more details.
501502
hack::into_vec(self)

alloc/src/vec/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,7 @@ impl<T> Vec<T> {
416416
/// ```
417417
#[inline]
418418
#[rustc_const_stable(feature = "const_vec_new", since = "1.39.0")]
419+
#[cfg_attr(not(test), rustc_diagnostic_item = "vec_new")]
419420
#[stable(feature = "rust1", since = "1.0.0")]
420421
#[must_use]
421422
pub const fn new() -> Self {
@@ -3046,6 +3047,7 @@ impl<T: PartialEq, A: Allocator> Vec<T, A> {
30463047
#[doc(hidden)]
30473048
#[cfg(not(no_global_oom_handling))]
30483049
#[stable(feature = "rust1", since = "1.0.0")]
3050+
#[cfg_attr(not(test), rustc_diagnostic_item = "vec_from_elem")]
30493051
pub fn from_elem<T: Clone>(elem: T, n: usize) -> Vec<T> {
30503052
<T as SpecFromElem>::from_elem(elem, n, Global)
30513053
}

0 commit comments

Comments
 (0)