about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-06-17 06:47:54 +0000
committerbors <bors@rust-lang.org>2017-06-17 06:47:54 +0000
commitff9f2d2ae94fd951229c33ae55076fce4f68fab0 (patch)
tree3e8b1dc8719c4068a4ffcd079807d92ac55d6f65 /src/liballoc
parent08d920cd4d95cc3e3c6ee3dd1ad5c98a4c58639e (diff)
parent6062bf7aca1927bc0e64854c54b466fffa73f07a (diff)
downloadrust-ff9f2d2ae94fd951229c33ae55076fce4f68fab0.tar.gz
rust-ff9f2d2ae94fd951229c33ae55076fce4f68fab0.zip
Auto merge of #42712 - frewsxcv:rollup, r=frewsxcv
Rollup of 3 pull requests

- Successful merges: #42660, #42662, #42705
- Failed merges:
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/rc.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liballoc/rc.rs b/src/liballoc/rc.rs
index 1f3388ad2c2..21a56ff9899 100644
--- a/src/liballoc/rc.rs
+++ b/src/liballoc/rc.rs
@@ -428,7 +428,7 @@ impl Rc<str> {
     #[doc(hidden)]
     #[unstable(feature = "rustc_private",
                reason = "for internal use in rustc",
-               issue = "0")]
+               issue = "27812")]
     pub fn __from_str(value: &str) -> Rc<str> {
         unsafe {
             // Allocate enough space for `RcBox<str>`.
@@ -453,7 +453,7 @@ impl<T> Rc<[T]> {
     #[doc(hidden)]
     #[unstable(feature = "rustc_private",
                reason = "for internal use in rustc",
-               issue = "0")]
+               issue = "27812")]
     pub fn __from_array(value: Box<[T]>) -> Rc<[T]> {
         unsafe {
             let ptr: *mut RcBox<[T]> =