Rollup merge of #91755 - not-my-profile:fix-const_linked_list_new-since, r=dtolnay

Fix since attribute for const_linked_list_new feature

https://github.com/rust-lang/rust/pull/63684
was merged for 1.39 not 1.32
This commit is contained in:
Matthias Krüger 2021-12-10 22:41:31 +01:00 committed by GitHub
commit 637859b26e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -417,7 +417,7 @@ impl<T> LinkedList<T> {
/// let list: LinkedList<u32> = LinkedList::new(); /// let list: LinkedList<u32> = LinkedList::new();
/// ``` /// ```
#[inline] #[inline]
#[rustc_const_stable(feature = "const_linked_list_new", since = "1.32.0")] #[rustc_const_stable(feature = "const_linked_list_new", since = "1.39.0")]
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]
#[must_use] #[must_use]
pub const fn new() -> Self { pub const fn new() -> Self {