about summary refs log tree commit diff
path: root/library/core/src/cell/once.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/core/src/cell/once.rs')
-rw-r--r--library/core/src/cell/once.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/library/core/src/cell/once.rs b/library/core/src/cell/once.rs
index 5dc2d523198..a7cd59e50fc 100644
--- a/library/core/src/cell/once.rs
+++ b/library/core/src/cell/once.rs
@@ -284,8 +284,7 @@ impl<T: PartialEq> PartialEq for OnceCell<T> {
 impl<T: Eq> Eq for OnceCell<T> {}
 
 #[stable(feature = "once_cell", since = "CURRENT_RUSTC_VERSION")]
-#[rustc_const_unstable(feature = "const_convert", issue = "88674")]
-impl<T> const From<T> for OnceCell<T> {
+impl<T> From<T> for OnceCell<T> {
     /// Creates a new `OnceCell<T>` which already contains the given `value`.
     #[inline]
     fn from(value: T) -> Self {