diff --git a/src/libcore/result.rs b/src/libcore/result.rs index d87c1020dcc..2b33b1f83d2 100644 --- a/src/libcore/result.rs +++ b/src/libcore/result.rs @@ -744,7 +744,7 @@ impl Result { /// x.expect("Testing expect"); // panics with `Testing expect: emergency failure` /// ``` #[inline] - #[unstable(feature = "result_expect", reason = "newly introduced")] + #[unstable(feature = "result_expect", reason = "newly introduced", issue = "27277")] pub fn expect(self, msg: &str) -> T { match self { Ok(t) => t,