From b7dcf272d90657bfea13e54939ee04fed7c7f5f0 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 12 Aug 2015 17:23:48 -0700 Subject: core: Fill out issues for unstable features --- src/libcore/option.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/libcore/option.rs') diff --git a/src/libcore/option.rs b/src/libcore/option.rs index 2235dc4af11..e64048c82d8 100644 --- a/src/libcore/option.rs +++ b/src/libcore/option.rs @@ -287,7 +287,8 @@ impl Option { /// ``` #[inline] #[unstable(feature = "as_slice", - reason = "waiting for mut conventions")] + reason = "waiting for mut conventions", + issue = "27776")] pub fn as_mut_slice<'r>(&'r mut self) -> &'r mut [T] { match *self { Some(ref mut x) => { @@ -689,7 +690,8 @@ impl Option { /// Converts from `Option` to `&[T]` (without copying) #[inline] - #[unstable(feature = "as_slice", since = "unsure of the utility here")] + #[unstable(feature = "as_slice", since = "unsure of the utility here", + issue = "27776")] pub fn as_slice<'a>(&'a self) -> &'a [T] { match *self { Some(ref x) => slice::ref_slice(x), -- cgit 1.4.1-3-g733a5