mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-12 08:36:03 +00:00
Fix unstable feature name for some impls for Unique<T>
This commit is contained in:
parent
1ba8b15321
commit
f732911cf5
@ -1144,14 +1144,14 @@ impl<T: ?Sized> Unique<T> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[unstable(feature = "shared", issue = "27730")]
|
#[unstable(feature = "unique", issue = "27730")]
|
||||||
impl<T: ?Sized> Clone for Unique<T> {
|
impl<T: ?Sized> Clone for Unique<T> {
|
||||||
fn clone(&self) -> Self {
|
fn clone(&self) -> Self {
|
||||||
*self
|
*self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[unstable(feature = "shared", issue = "27730")]
|
#[unstable(feature = "unique", issue = "27730")]
|
||||||
impl<T: ?Sized> Copy for Unique<T> { }
|
impl<T: ?Sized> Copy for Unique<T> { }
|
||||||
|
|
||||||
#[unstable(feature = "unique", issue = "27730")]
|
#[unstable(feature = "unique", issue = "27730")]
|
||||||
|
Loading…
Reference in New Issue
Block a user