about summary refs log tree commit diff
path: root/library/core/src
diff options
context:
space:
mode:
authorJubilee <46493976+workingjubilee@users.noreply.github.com>2024-05-28 02:07:49 -0700
committerGitHub <noreply@github.com>2024-05-28 02:07:49 -0700
commit4aaf9f645e490c3d229134a689bd8ebf19016eba (patch)
tree125c4497b2bae272bc4c8417174023de7dbeac6e /library/core/src
parent01aa2e85110ceba2a675aa1281b56e7df7ed4238 (diff)
parent402a649e753c2f21c67c641e99dc90796be85566 (diff)
downloadrust-4aaf9f645e490c3d229134a689bd8ebf19016eba.tar.gz
rust-4aaf9f645e490c3d229134a689bd8ebf19016eba.zip
Rollup merge of #125647 - tspiteri:track-lazy_cell_consume, r=workingjubilee
update tracking issue for lazy_cell_consume

<!--
If this PR is related to an unstable feature or an otherwise tracked effort,
please link to the relevant tracking issue here. If you don't know of a related
tracking issue or there are none, feel free to ignore this.

This PR will get automatically assigned to a reviewer. In case you would like
a specific user to review your work, you can assign it to them by using

    r​? <reviewer name>
-->
Diffstat (limited to 'library/core/src')
-rw-r--r--library/core/src/cell/lazy.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/cell/lazy.rs b/library/core/src/cell/lazy.rs
index 47eab6fd016..80b85b95446 100644
--- a/library/core/src/cell/lazy.rs
+++ b/library/core/src/cell/lazy.rs
@@ -78,7 +78,7 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
     /// assert_eq!(&*lazy, "HELLO, WORLD!");
     /// assert_eq!(LazyCell::into_inner(lazy).ok(), Some("HELLO, WORLD!".to_string()));
     /// ```
-    #[unstable(feature = "lazy_cell_consume", issue = "109736")]
+    #[unstable(feature = "lazy_cell_consume", issue = "125623")]
     pub fn into_inner(this: Self) -> Result<T, F> {
         match this.state.into_inner() {
             State::Init(data) => Ok(data),