about summary refs log tree commit diff
path: root/src/liballoc/boxed.rs
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2020-02-28 17:17:33 +0100
committerGitHub <noreply@github.com>2020-02-28 17:17:33 +0100
commite4cedc9df29d87aa5382986ffa6a91fdfef9e64e (patch)
treebff6272fdb83de717d31068439505b8264844688 /src/liballoc/boxed.rs
parent87cc521b02dfba7adc77e7c72c830d5c98d5438f (diff)
parent4e0bea326e7f3f26ddae920e599597b309530e00 (diff)
downloadrust-e4cedc9df29d87aa5382986ffa6a91fdfef9e64e.tar.gz
rust-e4cedc9df29d87aa5382986ffa6a91fdfef9e64e.zip
Rollup merge of #69538 - JohnTitor:boxed-slice-try-from, r=Centril
Stabilize `boxed_slice_try_from`

Closes #69202
Diffstat (limited to 'src/liballoc/boxed.rs')
-rw-r--r--src/liballoc/boxed.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs
index 3ac4bd82a3a..81b0e9817d2 100644
--- a/src/liballoc/boxed.rs
+++ b/src/liballoc/boxed.rs
@@ -825,7 +825,7 @@ impl From<Box<str>> for Box<[u8]> {
     }
 }
 
-#[unstable(feature = "boxed_slice_try_from", issue = "none")]
+#[stable(feature = "boxed_slice_try_from", since = "1.43.0")]
 impl<T, const N: usize> TryFrom<Box<[T]>> for Box<[T; N]>
 where
     [T; N]: LengthAtMost32,