diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-02-28 13:28:09 +0900 |
|---|---|---|
| committer | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-02-28 13:28:09 +0900 |
| commit | 4e0bea326e7f3f26ddae920e599597b309530e00 (patch) | |
| tree | c93e2b6a4fe928025edb9a7bd74d4960043044d9 /src/liballoc/sync.rs | |
| parent | fbc46b7d71d0fe93066d7c026eccd01c16185cd4 (diff) | |
| download | rust-4e0bea326e7f3f26ddae920e599597b309530e00.tar.gz rust-4e0bea326e7f3f26ddae920e599597b309530e00.zip | |
Stabilize `boxed_slice_try_from`
Diffstat (limited to 'src/liballoc/sync.rs')
| -rw-r--r-- | src/liballoc/sync.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/sync.rs b/src/liballoc/sync.rs index fd285242d5b..9bd708c0f59 100644 --- a/src/liballoc/sync.rs +++ b/src/liballoc/sync.rs @@ -2002,7 +2002,7 @@ impl<T> From<Vec<T>> for Arc<[T]> { } } -#[unstable(feature = "boxed_slice_try_from", issue = "none")] +#[stable(feature = "boxed_slice_try_from", since = "1.43.0")] impl<T, const N: usize> TryFrom<Arc<[T]>> for Arc<[T; N]> where [T; N]: LengthAtMost32, |
