diff options
| author | bors <bors@rust-lang.org> | 2024-02-09 18:09:02 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-02-09 18:09:02 +0000 |
| commit | f4cfd872028398da2b2d85c368c51f4d007dc6af (patch) | |
| tree | de4ecb03d5b55b630c9d74ca8fed2665716a1719 /library/alloc/src/vec | |
| parent | e28fae52d99d7c14bf0890d1f2b13c2c34fa8932 (diff) | |
| parent | 9a5034a20ed8b055dc615271f9d9cf27f9e494f0 (diff) | |
| download | rust-f4cfd872028398da2b2d85c368c51f4d007dc6af.tar.gz rust-f4cfd872028398da2b2d85c368c51f4d007dc6af.zip | |
Auto merge of #120676 - Mark-Simulacrum:bootstrap-bump, r=clubby789
Bump bootstrap compiler to just-built 1.77 beta https://forge.rust-lang.org/release/process.html#master-bootstrap-update-t-2-day-tuesday
Diffstat (limited to 'library/alloc/src/vec')
| -rw-r--r-- | library/alloc/src/vec/cow.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/vec/cow.rs b/library/alloc/src/vec/cow.rs index b12910f3690..3fe83242a30 100644 --- a/library/alloc/src/vec/cow.rs +++ b/library/alloc/src/vec/cow.rs @@ -15,7 +15,7 @@ impl<'a, T: Clone> From<&'a [T]> for Cow<'a, [T]> { } } -#[stable(feature = "cow_from_array_ref", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "cow_from_array_ref", since = "1.77.0")] impl<'a, T: Clone, const N: usize> From<&'a [T; N]> for Cow<'a, [T]> { /// Creates a [`Borrowed`] variant of [`Cow`] /// from a reference to an array. |
