We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 415a8e5 commit 216d0feCopy full SHA for 216d0fe
library/core/src/option.rs
@@ -581,7 +581,7 @@ impl<T> Option<T> {
581
/// assert_eq!(opt.unwrap(), 3);
582
/// ```
583
#[inline]
584
- #[unstable(feature = "option_insert", reason = "newly added", issue = "none")]
+ #[unstable(feature = "option_insert", reason = "newly added", issue = "78271")]
585
pub fn insert(&mut self, value: T) -> &mut T {
586
*self = Some(value);
587
0 commit comments