diff options
| author | Trevor Spiteri <trevor.spiteri@um.edu.mt> | 2024-05-28 11:02:03 +0200 | 
|---|---|---|
| committer | Trevor Spiteri <trevor.spiteri@um.edu.mt> | 2024-05-28 11:02:03 +0200 | 
| commit | 402a649e753c2f21c67c641e99dc90796be85566 (patch) | |
| tree | 785b0f70688a9e92f856e914ab2a7e8d9901febb /library/core/src | |
| parent | c0d600385bb96cc23d3de8615ee37c01abba6c8a (diff) | |
| download | rust-402a649e753c2f21c67c641e99dc90796be85566.tar.gz rust-402a649e753c2f21c67c641e99dc90796be85566.zip | |
update tracking issue for lazy_cell_consume
Diffstat (limited to 'library/core/src')
| -rw-r--r-- | library/core/src/cell/lazy.rs | 2 | 
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), | 
