From 6720e0191cc7a735b9991a955c7acf26cbab3c49 Mon Sep 17 00:00:00 2001 From: Mark-Simulacrum Date: Tue, 1 Nov 2016 09:47:09 -0600 Subject: [PATCH] Add tracking issue number to Result::unwrap_or_default unstable annotation. --- src/libcore/result.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/result.rs b/src/libcore/result.rs index 3d34f62006785..9ba5ff7c3a462 100644 --- a/src/libcore/result.rs +++ b/src/libcore/result.rs @@ -821,7 +821,7 @@ impl Result { /// [`FromStr`]: ../../std/str/trait.FromStr.html /// ``` #[inline] - #[unstable(feature = "result_unwrap_or_default", issue = "0")] + #[unstable(feature = "result_unwrap_or_default", issue = "37516")] pub fn unwrap_or_default(self) -> T { match self { Ok(x) => x,