about summary refs log tree commit diff
path: root/library
diff options
context:
space:
mode:
authorDeadbeef <ent3rm4n@gmail.com>2021-12-19 01:55:37 +0800
committerDeadbeef <ent3rm4n@gmail.com>2021-12-23 21:26:05 +0800
commit3ae0dabddbec41422549d2f0f4512c3d3415d0af (patch)
tree333fad67233515d115c16d786c47b99b950e3767 /library
parent06a1c14d52a8482a33416c21b320970cab80cccc (diff)
downloadrust-3ae0dabddbec41422549d2f0f4512c3d3415d0af.tar.gz
rust-3ae0dabddbec41422549d2f0f4512c3d3415d0af.zip
Bless a few tests
Diffstat (limited to 'library')
-rw-r--r--library/alloc/src/vec/mod.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/library/alloc/src/vec/mod.rs b/library/alloc/src/vec/mod.rs
index 16df2931080..768374bd781 100644
--- a/library/alloc/src/vec/mod.rs
+++ b/library/alloc/src/vec/mod.rs
@@ -3009,14 +3009,12 @@ impl<T, A: Allocator, const N: usize> TryFrom<Vec<T, A>> for [T; N] {
     /// # Examples
     ///
     /// ```
-    /// use std::convert::TryInto;
     /// assert_eq!(vec![1, 2, 3].try_into(), Ok([1, 2, 3]));
     /// assert_eq!(<Vec<i32>>::new().try_into(), Ok([]));
     /// ```
     ///
     /// If the length doesn't match, the input comes back in `Err`:
     /// ```
-    /// use std::convert::TryInto;
     /// let r: Result<[i32; 4], _> = (0..10).collect::<Vec<_>>().try_into();
     /// assert_eq!(r, Err(vec![0, 1, 2, 3, 4, 5, 6, 7, 8, 9]));
     /// ```
@@ -3024,7 +3022,6 @@ impl<T, A: Allocator, const N: usize> TryFrom<Vec<T, A>> for [T; N] {
     /// If you're fine with just getting a prefix of the `Vec<T>`,
     /// you can call [`.truncate(N)`](Vec::truncate) first.
     /// ```
-    /// use std::convert::TryInto;
     /// let mut v = String::from("hello world").into_bytes();
     /// v.sort();
     /// v.truncate(2);